/* ===================
   FONTS
   =================== */
/* Inter for body - clean, professional
   Instrument Serif for accent - adds warmth without being pretentious */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Instrument+Serif&display=swap');

/* New French font for logo */
@font-face {
    font-family: 'New French';
    src: url('../newfrench.woff2') format('woff2'),
         url('../newfrench.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===================
   BASE
   =================== */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    line-height: 1.6;
    color: #111;
    background-color: #fafaf8;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ===================
   PAGE WRAPPER
   =================== */
#swup {
    background-color: #fafaf8;
   
    min-height: 100vh;
    overflow: hidden;
}

/* ===================
   HEADER
   =================== */
.site-header {
    padding: 1.5rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.site-header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: 'New French', 'Instrument Serif', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.02em;
    text-align: center;
    grid-column: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
    line-height: 2.5;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 0;
    position: relative;
}

.logo a:visited {
    color: inherit;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 35px;
    height: 35px;
    background-color: #111;
    color: #fafaf8;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transition: background-color 0.3s ease;
    font-size: 1.25rem;
    line-height: 1;
}

.back-to-top.visible {
    opacity: 1;
    animation: zoomInBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes zoomInBounce {
    0% {
        transform: translateX(-50%) scale(0);
        opacity: 0;
    }
    70% {
        transform: translateX(-50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
}

.back-to-top:hover {
    background-color: #000;
    transform: translateX(-50%) scale(1.1);
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    gap: 2.5rem;
    grid-column: 1;
}

.main-nav a {
    text-decoration: none;
    color: #111;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.25rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #111;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Services Dynamic Island */
.services-island {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 100px;
    padding: 0;
    transition: background-color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                padding 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                gap 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services-toggle {
    cursor: pointer;
    transition: color 0.3s ease;
}

.services-toggle.active::after {
    width: 100%;
}

.services-inline {
    display: none;
    gap: 1.25rem;
    overflow: hidden;
    opacity: 0;
}

.services-expanded .services-island {
    background: #111;
    padding: 0.5rem 1.25rem;
    margin: -0.5rem 0;
    gap: 1.25rem;
}

.services-expanded .services-toggle {
    color: #fff;
}

.services-expanded .services-toggle::after {
    display: none;
}

.services-expanded .services-inline {
    display: flex;
    animation: servicesReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes servicesReveal {
    from {
        max-width: 0;
        opacity: 0;
    }
    to {
        max-width: 400px;
        opacity: 1;
    }
}

.services-inline a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    text-decoration: none;
    padding: 0.25rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.services-inline a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: width 0.3s ease;
}

.services-inline a:hover {
    color: #fff;
}

.services-inline a:hover::after {
    width: 100%;
    background-color: #fff;
}

.services-expanded .logo {
    transform: translateX(40px);
    opacity: 0.3;
}

.services-expanded .header-cta {
    transform: translateX(40px);
    opacity: 0.3;
}

/* Header CTA */
.header-cta {
    display: flex;
    justify-content: flex-end;
    grid-column: 3;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.4s ease;
}

.cta-button {
    text-decoration: none;
    color: #111;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.65rem 1.5rem;
    border: 1px solid #111;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #111;
    color: #fafaf8;
}

/* Fixed CTA Button */
.fixed-cta-wrapper {
    position: fixed;
    top: 1.5rem;
    right: 0;
    left: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fixed-cta-wrapper.visible {
    opacity: 1;
    pointer-events: auto;
}

.fixed-cta-wrapper .fixed-cta-button {
    position: absolute;
    right: 5%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.65rem 1.5rem;
    background: #111;
    color: #fafaf8;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: scale(0);
}

.fixed-cta-wrapper.visible .fixed-cta-button {
    animation: ctaZoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes ctaZoomIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.08);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.fixed-cta-wrapper .fixed-cta-button:hover {
    background: #000;
    color: #fafaf8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

/* Mobile: Static CTA at bottom center */
@media (max-width: 768px) {
    .fixed-cta-wrapper {
        position: fixed;
        top: auto;
        bottom: 1.5rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        opacity: 1;
        pointer-events: auto;
        z-index: 999;
    }

    .fixed-cta-wrapper .fixed-cta-button {
        position: static;
        right: auto;
        width: auto;
        transform: none;
        animation: none;
        font-size: 0.9rem;
        padding: 0.75rem 2rem;
        background: #111;
        color: #fafaf8;
        border: none;
        border-radius: 20px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }

    .fixed-cta-wrapper.visible .fixed-cta-button {
        animation: none;
        transform: none;
    }

    .fixed-cta-wrapper .fixed-cta-button:hover {
        background: #000;
        transform: scale(1.05);
    }
}

/* ===================
   BURGER MENU
   =================== */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: #111;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Burger animation when open */
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===================
   MOBILE NAVIGATION
   =================== */
@media (max-width: 768px) {
    .site-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        text-align: left;
        order: 1;
    }

    .burger {
        display: flex;
        order: 2;
    }

    .header-cta {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 1000;
        pointer-events: none;
    }

    .main-nav.open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .main-nav a {
        font-size: 1.5rem;
        font-family: 'Instrument Serif', Georgia, serif;
        letter-spacing: -0.01em;
    }

    .main-nav a::after {
        display: none;
    }

    .services-island {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .services-toggle {
        font-size: 1.5rem;
        font-family: 'Instrument Serif', Georgia, serif;
        letter-spacing: -0.01em;
    }

    .services-inline {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding-top: 0.75rem;
    }

    .services-inline a {
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
        color: rgba(0, 0, 0, 0.35);
    }

    .services-inline a::after {
        display: none;
    }

    .services-expanded .services-island {
        background: none;
        padding: 0;
        margin: 0;
    }

    .services-expanded .services-toggle {
        color: #111;
    }

    .services-expanded .services-inline {
        display: flex;
        animation: none;
        opacity: 1;
        max-width: none;
    }

    .services-expanded .services-inline a {
        color: rgba(0, 0, 0, 0.35);
    }

    .services-expanded .services-inline a:hover {
        color: #111;
    }

    .services-expanded .logo,
    .services-expanded .header-cta {
        transform: none;
        opacity: 1;
    }
}

/* ===================
   LAYOUT
   =================== */
main {
    padding-top: 120px;
}

main .hero {
    padding-top: 0;
    margin-top: -120px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================
   CASE STUDY COMPONENTS
   =================== */
.cs-hero img,
.cs-fullimg img {
    width: 100%;
    display: block;
}

.cs-video {
    background-color: #9d9d97;
    padding: 4rem 0;
}

/* You Before Two — match video background colour exactly */
main[data-cs-title="You Before Two"] .cs-video {
    background-color: #a8a8a2;
}

.cs-video video {
    width: 100%;
    height: auto;
    display: block;
}

.cs-videofull video {
    width: 100%;
    display: block;
}

/* Video Testimonial with Play Button */
.cs-video-wrapper {
    position: relative;
    cursor: pointer;
}

.cs-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Portrait testimonial videos — cap width and centre */
.cs-video-testimonial--portrait .cs-video-wrapper {
    max-width: 360px;
    margin: 0 auto;
}

.cs-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    padding: 0;
}

.cs-video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.cs-video-play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.cs-video-wrapper video::-webkit-media-controls {
    display: none;
}

.cs-video-wrapper.playing video::-webkit-media-controls {
    display: flex;
}

.cs-icon {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 3rem 0;
    max-width:1200px;
    margin:auto;
}

.cs-icon img {
    grid-column: 2;
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.cs-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .cs-icon {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 2rem 0;
    }

    .cs-icon img {
        grid-column: 1;
        width: 150px;
        margin: 0 auto;
    }

    .cs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 3rem 0;
    }
}

.cs-left h2 {
    margin-top: 0;
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
}

.cs-right p {
    font-size: 1.05rem;
    color: #333;
}

.cs-right a {
    color: #111;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.cs-testimonial-btn {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.cs-testimonial-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.cs-testimonial-btn:active {
    transform: translateY(0);
}

ul {
    margin: 0;
    padding-left: 1em;
}

/* ===================
   WORK PAGE
   =================== */
.page-decoration {
    position: relative;
    pointer-events: none;
}

.decoration-botanical-1 {
    position: fixed;
    top: 15%;
    right: 5%;
    opacity: 0.6;
    z-index: 1;
}

.decoration-flourish-1 {
    position: fixed;
    bottom: 20%;
    left: 3%;
    opacity: 0.5;
    z-index: 1;
}

.decoration-star-1 {
    position: fixed;
    top: 50%;
    right: 8%;
    opacity: 0.4;
    z-index: 1;
}

@media (max-width: 768px) {
    .page-decoration {
        display: none;
    }
}

.work-intro {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 10;
}

.work-intro h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem 0;
}

.ornamental-divider {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    opacity: 0.8;
}

.work-filter-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
}

.work-filter-label {
    font-family: 'New French', 'Instrument Serif', Georgia, serif;
    font-size: 1.5rem;
    color: #111;
    margin-right: 0.3rem;
}

.work-filter-sep {
    color: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    user-select: none;
}

.work-filter-btn {
    padding: 0;
    border: none;
    border-bottom: 1.5px dotted transparent;
    border-radius: 0;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.work-filter-btn:hover {
    color: #111;
    border-bottom-color: rgba(0, 0, 0, 0.3);
}

.work-filter-btn.active {
    color: #111;
    border-bottom-color: #111;
}

/* Service pages */
.service-hero {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 3rem;
    max-width: 720px;
    margin: 0 auto;
}

.service-hero-icon {
    width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
    mix-blend-mode: multiply;
}

.service-hero-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    color: #111;
    margin-bottom: 1.5rem;
}

.service-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 1rem;
}

.service-hero-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 2rem;
}

.service-hero .hero-google-badge {
    justify-content: center;
}

.service-includes {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 4rem;
}

.service-includes-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #111;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.service-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.service-includes-list li {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(0, 0, 0, 0.5);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 100px;
}

/* Marketing gallery */
.marketing-gallery {
    padding: 2rem 0 4rem;
}

.marketing-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    display: flex;
    flex-direction: column;
}

.gallery-media {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
}

.gallery-media img,
.gallery-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.gallery-caption {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.45);
    letter-spacing: 0.02em;
}

.gallery-description {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
}

.gallery-client-group {
    margin-top: 3.5rem;
}

.gallery-client-label {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #111;
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gallery-media--pdf {
    display: flex;
    gap: 8px;
    background: #eeede8;
    padding: 16px;
    border-radius: 8px;
    aspect-ratio: auto;
    align-items: flex-start;
}

.gallery-media--pdf img {
    flex: 1;
    min-width: 0;
    height: 260px;
    object-fit: contain;
    object-position: top;
}

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

@media (max-width: 768px) {
    .service-hero {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-subtitle {
        font-size: 0.95rem;
    }
}

.service-work-list {
    gap: 5rem;
    padding-top: 0;
}

.work-item.filter-hidden {
    display: none;
}

.work-list {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    padding: 2rem 0 6rem;
}

@media (max-width: 768px) {
    .work-intro h1 {
        font-size: 2rem;
    }

    .work-list {
        gap: 4rem;
    }
}

.work-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5.5rem;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.work-item.active {
    transform: scale(1.04);
}

/* Override AOS transform when active - need to combine transforms */
.work-item.active.aos-animate {
    transform: translateZ(0) scale(1.04) !important;
}

@media (max-width: 968px) {
    .work-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .work-item-icon {
        width: 60px;
        height: 60px;
    }
}

.work-item-media-link {
    display: block;
    text-decoration: none;
}

.work-item-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.work-item-media-link:hover .work-item-media {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.work-item-media img,
.work-item-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-item-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.work-item-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.work-item-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0;
    transition: opacity 0.3s ease;
        margin-top:-15px;

}

.work-item:hover .work-item-title {
    opacity: 0.6;
}

.work-item-services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top:-25px;
}

.work-item-services li {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0;
    position: relative;
}

.work-item-services li:not(:last-child)::after {
    content: '•';
    margin-left: 0.5rem;
    color: rgba(0, 0, 0, 0.3);
}

.work-item-overview {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.work-item-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.work-item-link:hover {
    color: rgba(0, 0, 0, 1);
}

.work-item-link .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.work-item-link:hover .arrow {
    transform: translateX(4px);
}

/* ===================
   RECENT WORK (HOME PAGE)
   =================== */
.recent-work {
    padding: 6rem 0;
    position: relative;
}

.recent-work-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.recent-work-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 2rem 0 2rem;
}

@media (max-width: 768px) {
    .recent-work {
        padding: 4rem 0;
    }

    .recent-work-title {
        font-size: 2rem;
    }

    .recent-work-list {
        gap: 4rem;
    }
}

/* View All Projects Link */
.recent-work-cta {
    text-align: center;
    padding-top: 3rem;
}

.recent-work-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.recent-work-view-all:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.25);
}

.recent-work-view-all .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.recent-work-view-all:hover .arrow {
    transform: translateX(4px);
}

/* ===================
   MEET ME VIDEO OVERLAY
   =================== */
.meet-me-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    pointer-events: none;
}

.meet-me-overlay.active {
    display: block;
    pointer-events: auto;
}

.meet-me-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.meet-me-overlay.active .meet-me-backdrop {
    opacity: 1;
}

/* Rope graphics (hidden for now) */
.meet-me-rope {
    display: none;
}

/* Video container */
.meet-me-video-container {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 800px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transform: translate(-50%, -50%);
}

.meet-me-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.meet-me-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.meet-me-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: #111;
    color: #fafaf8;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.meet-me-close:hover {
    background: #000;
    transform: scale(1.1);
}

.meet-me-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.meet-me-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.meet-me-play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Hero elements animation states */
.hero.video-active .hero-bird {
    transform: translateX(-150%) !important;
}

.hero.video-active .hero-me {
    transform: translateX(150%) !important;
}

.hero.video-active .hero-content {
    opacity: 0 !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .meet-me-video-container {
        width: 95%;
        max-width: none;
    }

    .meet-me-rope-left {
        left: calc(50% - 48%);
    }

    .meet-me-rope-right {
        right: calc(50% - 48%);
    }

    .meet-me-close {
        top: -45px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

/* ===================
   FOOTER
   =================== */
.site-footer {
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 1px solid #eee;
}

.site-footer p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* ===================
   HERO SECTION
   =================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    z-index: 10;
    text-align: center;
    max-width: 450px;
    padding: 0 2rem;
    top: calc((100vh - 15vh) / 2);
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin: 0 0 1.5rem 0;
    font-weight: 400;
}

.hero-google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    opacity: 0.8;
}

.hero-google-logo {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero-google-stars {
    display: flex;
    gap: 1px;
}

.hero-star {
    color: #111;
    font-size: 0.875rem;
    line-height: 1;
}

.hero-google-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111;
}

.hero-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-btn {
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.875rem 2rem;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #111;
}

.hero-btn-primary {
    background-color: #111;
    color: #fafaf8;
}

.hero-btn-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary {
    background-color: transparent;
    color: #111;
    border-width: 2px;
}

.hero-btn-secondary:hover {
    background-color: rgba(17, 17, 17, 0.05);
    transform: translateY(-2px);
}

.hero-bird {
    position: absolute;
    left: 2%;
    bottom: 100px;
    max-height: calc(100vh - 180px);
    width: auto;
    display: block;
    object-fit: contain;
    height: auto;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    outline: none;
    border: none;
}

.hero-me {
    position: absolute;
    right: 2%;
    bottom: 100px;
    max-height: calc(100vh - 180px);
    width: auto;
    height: auto;
    z-index: 5;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-grass {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background-image: url('../img/grass.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: grassSway 6s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes grassSway {
    0%, 100% {
        transform: skewX(0deg);
    }
    25% {
        transform: skewX(1.8deg);
    }
    75% {
        transform: skewX(-0.5deg);
    }
}

@media (max-width: 1400px) {
    .hero-bird,
    .hero-me {
        max-width: 350px;
    }
}

@media (max-width: 1024px) {
    .hero-bird,
    .hero-me {
        max-width: 250px;
        bottom: 100px;
        top: auto;
        transform: none;
        max-height: calc(100vh - 180px);
    }

    .hero-content {
        max-width: 450px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Ultrawide / Short Screen Fix - for very wide aspect ratios (21:9, 32:9, etc) */
@media (min-aspect-ratio: 2/1) and (orientation: landscape) {
    .hero-content {
        top: calc((100vh - 5vh) / 2);
        max-width: 400px;
    }

    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-google-badge {
        margin-top: 1rem;
        transform: scale(0.9);
    }

    .hero-cta-buttons {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .hero-btn {
        font-size: 0.85rem;
        padding: 0.75rem 1.75rem;
    }

    .hero-bird,
    .hero-me {
        max-height: calc(100vh - 200px);
    }

    .logo {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero {
        align-items: flex-start;
        padding-top: 0;
    }

    .hero-bird {
        left: 0;
        transform: none;
        bottom: 10px;
        max-width: 50%;
        max-height: 28vh;
    }

    .hero-me {
        display: block;
        right: 0;
        bottom: 10px;
        max-width: 50%;
        max-height: 28vh;
    }

    .hero-content {
        max-width: none;
        position: absolute;
        top: 120px;
        left: 0;
        transform: none;
        padding: 10px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-google-badge {
        gap: 0.4rem;
    }

    .hero-google-logo {
        width: 14px;
        height: 14px;
    }

    .hero-star {
        font-size: 0.75rem;
    }

    .hero-google-text {
        font-size: 0.75rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .hero-btn {
        width: 150px;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .hero-grass {
        height: 100px;
    }
}

/* Similar Case Studies */
.cs-related {
    padding: 100px 0 80px;
    margin-top: 80px;
    background-color: #9d9d97;
}

.cs-related-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

.cs-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cs-related-item {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cs-related-item:hover {
    transform: translateY(-5px);
    opacity: 0.85;
}

.cs-related-media {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
    background: rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
    border-radius: 2px;
}

.cs-related-media img,
.cs-related-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-related-title {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.cs-related-category {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .cs-related {
        padding: 60px 0 40px;
        margin-top: 60px;
    }

    .cs-related-heading {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .cs-related-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cs-related-title {
        font-size: 1.1rem;
    }
}

/* Contact Overlay */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
}

.contact-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 40, 35, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.contact-overlay-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 60px 40px;
    z-index: 1;
}

.contact-overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    z-index: 2;
}

.contact-overlay-close:hover {
    color: rgba(255, 255, 255, 1);
}

/* Steps */
.contact-step {
    display: none;
}

.contact-step.active {
    display: block;
    opacity: 1;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 50px 0;
    text-align: center;
    line-height: 1.2;
}

.contact-context {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: -35px 0 45px 0;
    font-style: italic;
}

/* Choice Buttons */
.contact-choices {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-choice-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-choice-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.contact-choice-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    display: block;
}

.contact-choice-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

/* Forms */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form-field label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.contact-form-field .optional {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 20px;
    font-size: 1rem;
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.9);
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Success State */
.contact-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-success-message {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-overlay-content {
        padding: 50px 30px;
        max-height: 90vh;
    }

    .contact-heading {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .contact-choice-btn {
        padding: 30px 25px;
    }

    .contact-choice-title {
        font-size: 1.25rem;
    }

    .contact-choice-subtitle {
        font-size: 0.9rem;
    }

    .contact-form {
        gap: 25px;
    }

    .contact-submit-btn {
        padding: 16px 35px;
        font-size: 1rem;
    }
}
/* ===================
   REVIEWS SECTION
   =================== */
.reviews-section {
    padding: 6rem 0;
    background-color: #fafafa;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.reviews-header h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0;
}

.reviews-google-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: #fbbc04;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 500;
}

.google-meta {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
}

.google-text {
    font-weight: 500;
}

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

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 4rem 0;
    }

    .reviews-header h2 {
        font-size: 2rem;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-google-badge {
        align-items: flex-start;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.review-card {
    background: white;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.review-avatar {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 0.25rem 0;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    color: #e0e0e0;
    font-size: 0.875rem;
}

.review-stars .star.filled {
    color: rgba(0, 0, 0, 0.8);
}

.review-date {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    margin: 0 0 1rem 0;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

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

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.reviews-link:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.25);
}

.reviews-link .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.reviews-link:hover .arrow {
    transform: translateX(4px);
}

.reviews-show-more {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-show-more-btn {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.875rem 2rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-show-more-btn:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.25);
}

/* ===================
   REVIEWS PAGE
   =================== */
.reviews-page-intro {
    padding: 4rem 0 3rem;
    text-align: center;
}

.reviews-page-intro h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem 0;
}

.reviews-page-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 2rem auto 3rem;
}

.reviews-page-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.stat-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.9);
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.rating-stars-large {
    color: #fbbc04;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .reviews-page-intro h1 {
        font-size: 2rem;
    }

    .reviews-page-intro-text {
        font-size: 1rem;
    }

    .reviews-page-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Video Testimonials Section */
.video-testimonials {
    background-color: #9d9d97;
    padding: 4rem 0;
}

.video-testimonials-heading {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    letter-spacing: -0.02em;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-testimonial-item {
    background-color: transparent;
}

.video-testimonial-item--portrait {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
}

/* Testimonial thumbnail grid */
.testimonials-thumbnails {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.testimonial-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1;
}

.testimonial-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.testimonial-thumb:hover img {
    transform: scale(1.04);
}

.testimonial-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(17, 17, 17, 0.72);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.testimonial-thumb:hover .testimonial-thumb-play {
    background: rgba(17, 17, 17, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video lightbox overlay */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-lightbox.active {
    display: flex;
}

.video-lightbox-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.88);
}

.video-lightbox-content {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 900px;
}

.video-lightbox-content--square {
    max-width: 480px;
}

.video-lightbox-content video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 85vh;
    border-radius: 4px;
}

.video-lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.video-lightbox-close:hover {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .video-testimonials {
        padding: 3rem 0;
    }

    .video-testimonials-heading {
        font-size: 1.35rem;
        margin-bottom: 2rem;
    }

    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Featured Review */
.featured-review {
    padding: 4rem 0;
    background-color: #f5f5f3;
}

.featured-review-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 3rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.featured-quote-mark {
    position: absolute;
    top: 2rem;
    left: 2rem;
    opacity: 0.15;
}

.featured-review-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
}

.featured-review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.featured-review-avatar {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.featured-review-meta {
    flex: 1;
}

.featured-review-name {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
}

.featured-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.featured-review-stars .star {
    color: #e0e0e0;
    font-size: 1rem;
}

.featured-review-stars .star.filled {
    color: rgba(0, 0, 0, 0.8);
}

.featured-review-source {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .featured-review {
        padding: 3rem 0;
    }

    .featured-review-content {
        padding: 2rem 1.5rem;
    }

    .featured-quote-mark {
        top: 1rem;
        left: 1rem;
        width: 30px;
        height: 30px;
    }

    .featured-review-text {
        font-size: 1.05rem;
    }

    .featured-review-name {
        font-size: 1.1rem;
    }
}

/* ===================
   ABOUT PAGE
   =================== */

/* Video Hero */
.about-video-hero {
    position: relative;
    width: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-video {
    width: 100%;
    height: auto;
    display: block;
}

.about-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

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

.about-play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

/* About Content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-intro {
    margin-bottom: 3rem;
}

.about-intro h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 0 2rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 1.5rem 0;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

/* Ornamental divider in about section */
.about-content .ornamental-divider {
    margin: 4rem auto;
}

/* Longer Story Section */
.about-longer-story h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-subheading {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    font-style: italic;
    margin: 0 0 2rem 0;
}

.about-longer-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 1.5rem 0;
}

.about-longer-story p:last-of-type {
    margin-bottom: 2rem;
}

/* Bullet list styling */
.about-bullet-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}

.about-bullet-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.about-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.4);
}

.about-closing {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.85);
    margin-top: 2rem;
}

/* Two Column Layout for Services/Process */
.about-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

.about-three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.about-stacked {
    margin: 3rem 0;
}

.about-what-we-do {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
    align-items: start;
}

.about-what-we-do-text h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-what-we-do-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 1.5rem 0;
}

.about-stacked-section {
    margin-bottom: 3rem;
}

.about-stacked-section h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-stacked-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 1.5rem 0;
}

.about-column h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-column p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 1.5rem 0;
}

.about-column .about-subheading {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    font-style: italic;
    margin: 0 0 1.5rem 0;
}

.about-column .about-bullet-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.about-column .about-bullet-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.about-column .about-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.4);
}

/* Person rows (Adam & Kirsty) */
.about-person {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 4rem;
    margin: 3rem 0;
    align-items: center;
}

.about-person--reverse {
    grid-template-columns: 280px 1fr;
}

.about-person-image {
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

.about-person-photo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.about-person-full {
    margin: 0 0 2rem 0;
}

.about-person-full p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 1.5rem 0;
}

.about-floki {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto;
}

.about-floki-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 1.5rem auto;
}

.about-floki h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-floki p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 1.5rem 0;
}

.about-person-text h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-person-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 1.5rem 0;
}

/* Pull Quote */
.about-pullquote {
    background: rgba(0, 0, 0, 0.03);
    padding: 3rem 4rem;
    margin: 3rem 0;
    border-left: 3px solid rgba(0, 0, 0, 0.15);
}

.about-pullquote p {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.85);
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-play-button svg {
        width: 60px;
        height: 60px;
    }

    .about-content {
        padding: 3rem 1.5rem;
    }

    .about-intro h1 {
        font-size: 2rem;
    }

    .about-intro p {
        font-size: 1rem;
    }

    .about-two-column {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-person {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-person--reverse .about-person-image {
        order: 0;
    }

    .about-person--reverse .about-person-text {
        order: 0;
    }

    .about-longer-story h2 {
        font-size: 1.6rem;
    }

    .about-longer-story p,
    .about-bullet-list li {
        font-size: 1rem;
    }

    .about-closing {
        font-size: 1.1rem;
    }
}
/* ===================
   INSIGHTS PAGES
   =================== */

/* Footer with Insights Link */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-copyright {
    margin: 0;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
}

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

.footer-nav a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Insights Page Intro */
.insights-page-intro {
    padding: 4rem 0 3rem;
    text-align: center;
}

.insights-page-intro h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem 0;
}

.insights-page-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 2rem auto;
}

/* Insights List */
.insights-list {
    padding: 3rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.insight-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.insight-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.insight-item-media-link {
    text-decoration: none;
}

.insight-item-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    overflow: hidden;
    border-radius: 4px;
}

.insight-item-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insight-date {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    margin-bottom: 1rem;
}

.insight-item-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
}

.insight-item-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.insight-item-title a:hover {
    color: rgba(0, 0, 0, 0.6);
}

.insight-item-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 1.5rem 0;
}

.insight-item-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    transition: gap 0.3s ease;
}

.insight-item-link:hover {
    gap: 0.75rem;
}

.insight-item-link .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .insights-page-intro h1 {
        font-size: 2rem;
    }

    .insights-page-intro-text {
        font-size: 1rem;
    }

    .insight-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }

    .insight-item-title {
        font-size: 1.5rem;
    }
}

/* Single Insight Page */
.insight-single {
    background-color: #fff;
}

.insight-hero {
    padding: 2rem 0 0;
}

.insight-hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.insight-back-link {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.insight-back-link:hover {
    color: rgba(0, 0, 0, 0.9);
}

.insight-hero-date {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.insight-hero-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0 0 3rem 0;
    max-width: 900px;
}

.insight-hero-media {
    margin-bottom: 4rem;
    border-radius: 4px;
    overflow: hidden;
}

.insight-hero-video {
    width: 100%;
    display: block;
    background-color: #000;
}

/* Insight Content */
.insight-content {
    padding: 3rem 0 4rem;
}

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

.insight-text-block {
    margin-bottom: 2.5rem;
}

.insight-text-block .intro-large {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 1.5rem;
}

.insight-text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin: 0 0 1.5rem 0;
}

.insight-text-block h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 2.5rem 0 1rem 0;
}

.insight-text-block ul,
.insight-text-block ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.insight-text-block li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 0.75rem;
}

.insight-text-block strong {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
}

.insight-section-heading {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 4rem 0 2rem 0;
}

.insight-video-block {
    margin: 4rem 0;
}

.insight-video {
    width: 100%;
    display: block;
    border-radius: 4px;
    background-color: #000;
}

.insight-video-caption {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    font-style: italic;
    text-align: center;
    margin: 1rem 0 0 0;
}

/* Inline CTA Links */
.cta-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
    margin: 2rem 0;
}

.inline-cta-link {
    color: rgba(0, 0, 0, 0.9);
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.3);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.inline-cta-link:hover {
    text-decoration-color: rgba(0, 0, 0, 0.7);
}

/* Related Case Study */
.insight-related {
    padding: 4rem 0;
    background-color: #fafaf8;
}

.insight-related-heading {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin: 0 0 3rem 0;
    letter-spacing: -0.02em;
}

.insight-related-case-study {
    max-width: 800px;
    margin: 0 auto;
}

/* Insight CTA Section */
.insight-cta {
    padding: 5rem 0;
    text-align: center;
    background-color: #fff;
}

.insight-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.insight-cta h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
}

.insight-cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 2rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .insight-hero {
        padding: 1rem 0 0;
    }

    .insight-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .insight-hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .insight-hero-media {
        margin-bottom: 2rem;
    }

    .insight-content {
        padding: 2rem 0 3rem;
    }

    .insight-text-block .intro-large {
        font-size: 1.1rem;
    }

    .insight-text-block p,
    .insight-text-block li {
        font-size: 1rem;
    }

    .insight-section-heading {
        font-size: 1.6rem;
        margin: 3rem 0 1.5rem 0;
    }

    .insight-text-block h3 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }

    .insight-video-block {
        margin: 3rem 0;
    }

    .insight-cta {
        padding: 3rem 0;
    }

    .insight-cta h2 {
        font-size: 2rem;
    }

    .insight-cta p {
        font-size: 1rem;
    }

    .insight-related {
        padding: 3rem 0;
    }

    .insight-related-heading {
        font-size: 1.6rem;
    }
}

/* Inline CTA Buttons in Articles */
.insight-cta-inline {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.insight-cta-btn {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.875rem 2rem;
    background: #111;
    color: #fafaf8;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.insight-cta-btn:hover {
    background: rgba(17, 17, 17, 0.85);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .insight-cta-inline {
        margin: 2rem 0;
        padding: 1.5rem 0;
    }

    .insight-cta-btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================

/* ========================================
   FIELD NOTES - VERTICAL SCROLL LAYOUT
   ======================================== */

/* Vertical Navigation Spine */
.field-notes-nav {
    position: fixed;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Panel 2 specific - light navigation */
body.on-field-note-2 .field-notes-nav .field-note-nav-item {
    background: rgba(250, 250, 248, 0.3) !important;
}

body.on-field-note-2 .field-notes-nav .field-note-nav-item:hover {
    background: rgba(250, 250, 248, 0.5) !important;
}

body.on-field-note-2 .field-notes-nav .field-note-nav-item.active {
    background: #fafaf8 !important;
}

.field-note-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8px;
    height: 8px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.field-note-nav-item:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.3);
}

.field-note-nav-item.active {
    background: #111;
    width: 10px;
    height: 10px;
}

.field-note-nav-number {
    display: none;
}

.field-note-nav-title {
    position: absolute;
    left: 20px;
    background: #111;
    color: #fafaf8;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
    border-radius: 3px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.field-note-nav-item:hover .field-note-nav-title {
    opacity: 1;
}

/* Full Width Layout (for special posts like #2) */
.field-note-container-full {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #111;
    height: 100vh;
    padding-top: 80px;
    box-sizing: border-box;
    justify-content: center;
}

.field-note-visual-full {
    width: 100%;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
}

.field-note-image-full {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.field-note-content-full {
    background: #111;
    color: #fafaf8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 3rem 2rem;
}

.field-note-content-full .field-note-text-wrapper {
    width: 100%;
    max-width: 50%;
    text-align: center;
}

.field-note-content-full .field-note-number {
    color: rgba(250, 250, 248, 0.3);
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.field-note-content-full .field-note-title {
    color: #fafaf8;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.field-note-content-full .field-note-text {
    color: rgba(250, 250, 248, 0.85);
    font-size: 0.95rem;
}

/* Inverted color scheme for panel 4 */
.field-note-container-inverted {
    background: #fafaf8;
}

.field-note-container-inverted .field-note-content-full {
    background: #fafaf8;
    color: #111;
}

.field-note-container-inverted .field-note-number {
    color: rgba(0, 0, 0, 0.3) !important;
}

.field-note-container-inverted .field-note-title {
    color: #111 !important;
}

.field-note-container-inverted .field-note-text {
    color: rgba(0, 0, 0, 0.85) !important;
}

/* Main Container - Enable smooth scroll snapping */
.field-notes-main {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

/* Each Field Note Section - Exactly 100vh */
.field-note-section {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    display: flex;
    align-items: center;
}

/* Note Container - Full viewport split */
.field-note-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
}

/* Visual - Left side */
.field-note-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Giraffe panel - 80vh anchored to bottom */
.field-note-visual-giraffe {
    align-items: flex-end;
    padding-bottom: 0;
}

.field-note-visual-giraffe .field-note-image {
    max-height: 80vh;
    height: 80vh;
    object-fit: contain;
}

/* Panel 5 section positioning context */
.field-note-section-panel-5 {
    position: relative;
}

/* Full-width of left panel at bottom left */
.field-note-visual-full-height {
    height: 100vh;
    padding: 0;
    align-items: flex-end;
    position: relative;
}

.field-note-visual-full-height .field-note-image {
    height: auto;
    max-width: none;
    width: 100%;
    object-fit: contain;
    object-position: bottom left;
    border-radius: 0;
    position: absolute;
    left: 0;
    bottom: 0;
}

.field-note-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Content - Right side with dark background - FULL HEIGHT */
.field-note-content {
    background: #111;
    color: #fafaf8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 5vh 2.5vw;
}

/* Text wrapper - will be scaled if needed */
.field-note-text-wrapper {
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s ease;
}

.field-note-number {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: rgba(250, 250, 248, 0.3);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.field-note-title {
    font-family: 'New French', 'Instrument Serif', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #fafaf8;
}

.field-note-text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(250, 250, 248, 0.85);
}

.field-note-text p {
    margin-bottom: 1.25rem;
}

.field-note-text p:last-child {
    margin-bottom: 0;
}

/* Scroll Arrow - Bottom center */
.scroll-arrow {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease, opacity 0.3s ease;
    z-index: 100;
    color: rgba(0, 0, 0, 0.6);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.9);
    transform: translateX(-50%) translateY(5px);
}

.scroll-arrow svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Prevent horizontal overflow on body and html */
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Hide vertical navigation on mobile */
    .field-notes-nav {
        display: none;
    }

    /* Remove fixed viewport behavior on mobile */
    .field-notes-main {
        scroll-snap-type: none;
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
        width: 100%;
        max-width: 100vw;
    }

    /* Full width layout mobile */
    .field-note-container-full {
        height: auto;
        padding-top: 80px;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        box-sizing: border-box;
    }

    .field-note-visual-full {
        height: auto;
        padding: 1rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .field-note-image-full {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: cover;
    }

    .field-note-content-full {
        background: #fafaf8;
        color: #111;
        padding: 2rem 1rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .field-note-content-full .field-note-text-wrapper {
        max-width: 100%;
        width: 100%;
        text-align: left;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .field-note-content-full .field-note-number {
        color: rgba(0, 0, 0, 0.3);
        font-size: 0.875rem;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }

    .field-note-content-full .field-note-title {
        color: #111;
        font-size: 1.5rem;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    .field-note-content-full .field-note-text {
        color: rgba(0, 0, 0, 0.8);
        font-size: 1rem;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .field-note-section {
        height: auto;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
        min-height: auto;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        box-sizing: border-box;
    }

    .field-note-container {
        grid-template-columns: 1fr;
        height: auto;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        box-sizing: border-box;
    }

    .field-note-visual {
        padding: 1rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .field-note-image,
    .field-note-visual-giraffe .field-note-image,
    .field-note-visual-full-height .field-note-image {
        width: 100%;
        max-width: 100%;
        max-height: none;
        height: auto;
        object-fit: cover;
        position: relative;
        border-radius: 0;
    }

    /* Videos 100% width on mobile */
    .field-note-image-full,
    video.field-note-image-full {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Reset to normal colors on mobile */
    .field-note-content {
        background: #fafaf8;
        color: #111;
        padding: 2rem 1rem 3rem 1rem;
        height: auto;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .field-note-text-wrapper {
        width: 100%;
        max-width: 100%;
        transform: none !important;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .field-note-number {
        color: rgba(0, 0, 0, 0.3);
        text-align: left;
        font-size: 0.875rem;
        width: 100%;
        box-sizing: border-box;
    }

    .field-note-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: #111;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    .field-note-text {
        font-size: 1rem;
        line-height: 1.6;
        color: rgba(0, 0, 0, 0.8);
        text-align: left;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .field-note-text p {
        margin-bottom: 1rem;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* Fix panel 5 (Making hard things easy) on mobile */
    .field-note-visual-full-height {
        height: auto;
        align-items: center;
        padding: 1.5rem;
        width: 100%;
    }

    /* Inverted panel colors on mobile */
    .field-note-container-inverted {
        background: #fafaf8;
    }

    .field-note-container-inverted .field-note-content-full {
        background: #fafaf8;
        color: #111;
    }

    /* Hide arrow on mobile */
    .scroll-arrow {
        display: none;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .field-note-container {
        grid-template-columns: 1fr 1fr;
    }

    .field-note-content {
        padding: 4vh 1.5vw;
    }

    .field-note-title {
        font-size: 2rem;
    }

    .field-note-text {
        font-size: 1rem;
    }
}

/* Large screens */
@media (min-width: 1600px) {
    .field-note-visual {
        padding: 3rem;
    }

    .field-note-content {
        padding: 5vh 3vw;
    }

    .field-note-text-wrapper {
        max-width: 700px;
    }

    .field-note-title {
        font-size: 3rem;
    }

    .field-note-text {
        font-size: 1.125rem;
    }
}

/* ===================
   WISE PIE CHAT
   =================== */
.wise-pie-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #111;
    background: #faf9f6;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.wise-pie-trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(0,0,0,0.18);
}

.wise-pie-trigger.hidden {
    display: none;
}

.wise-pie-trigger-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wise-pie-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    bottom: 20px;
    width: 420px;
    height: auto;
    z-index: 1001;
    display: none;
    flex-direction: column;
    background: #faf9f6;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    opacity: 0;
    overflow: hidden;
}

.wise-pie-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.08);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.wise-pie-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.wise-pie-panel.open {
    display: flex;
}

.wise-pie-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.wise-pie-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wise-pie-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.1);
}

.wise-pie-name {
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    color: #111;
}

.wise-pie-status {
    display: block;
    font-size: 0.75rem;
    color: rgba(0,0,0,0.4);
}

.wise-pie-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: rgba(0,0,0,0.3);
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}

.wise-pie-close:hover {
    color: #111;
}

.wise-pie-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wise-pie-welcome {
    text-align: center;
    padding: 40px 20px 20px;
}

.wise-pie-welcome-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid rgba(0,0,0,0.06);
}

.wise-pie-welcome-text {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.5);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.wise-pie-starters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.wise-pie-starter {
    font-family: inherit;
    font-size: 0.8rem;
    padding: 8px 16px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 20px;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wise-pie-starter:hover {
    background: #111;
    color: #fafaf8;
    border-color: #111;
}

.wise-pie-url-input {
    display: flex;
    gap: 8px;
    margin: 12px 0;
    padding: 0 24px;
}

.wise-pie-url-field {
    flex: 1;
    font-family: inherit;
    font-size: 0.85rem;
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 10px;
    background: white;
    outline: none;
}

.wise-pie-url-field:focus {
    border-color: #111;
}

.wise-pie-url-go {
    font-family: inherit;
    font-size: 0.85rem;
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    background: #111;
    color: #fafaf8;
    cursor: pointer;
}

.wise-pie-msg {
    max-width: 85%;
    padding: 12px 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    border-radius: 18px;
    animation: wisePieFadeIn 0.3s ease;
}

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

.wise-pie-msg-user {
    align-self: flex-end;
    background: #111;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.wise-pie-msg-assistant {
    align-self: flex-start;
    background: rgba(0,0,0,0.05);
    color: #111;
    border-bottom-left-radius: 4px;
}

.wise-pie-typing {
    display: flex;
    gap: 4px;
    padding: 16px 20px;
}

.wise-pie-typing span {
    width: 6px;
    height: 6px;
    background: rgba(0,0,0,0.25);
    border-radius: 50%;
    animation: wisePieBounce 1.2s infinite ease-in-out;
}

.wise-pie-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.wise-pie-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wisePieBounce {
    0%, 80%, 100% { transform: scale(1); opacity: 0.3; }
    40% { transform: scale(1.3); opacity: 0.8; }
}

.wise-pie-generated-img {
    width: 100%;
    border-radius: 12px;
    margin: 4px 0;
}

.wise-pie-input-area {
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.wise-pie-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.wise-pie-text-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 24px;
    font-size: 0.9rem;
    background: #fff;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}

.wise-pie-text-input:focus {
    border-color: rgba(0,0,0,0.3);
}

.wise-pie-send {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #111;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.wise-pie-send:hover {
    background: #333;
}

.wise-pie-email-capture {
    margin-bottom: 12px;
    padding: 14px 16px;
    background: rgba(0,0,0,0.04);
    border-radius: 14px;
}

.wise-pie-email-text {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.5);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.wise-pie-email-row {
    display: flex;
    gap: 8px;
}

.wise-pie-email-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    background: #fff;
}

.wise-pie-email-input:focus {
    border-color: rgba(0,0,0,0.3);
}

.wise-pie-email-btn {
    padding: 10px 20px;
    border: none;
    background: #111;
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.2s;
}

.wise-pie-email-btn:hover {
    background: #333;
}

.wise-pie-email-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile */
@media (max-width: 768px) {
    .wise-pie-panel {
        width: calc(100% - 16px);
        top: 8px;
        right: 8px;
        bottom: 8px;
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 16px;
    }

    .wise-pie-trigger {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
}
