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

/* Force GPU layer on animated SVG elements for iOS */
svg, path {
    transform: translateZ(0);
    backface-visibility: hidden;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-snap-type: y proximity;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

html, body {
    background: #000000;
    height: 100%;
    min-height: 100svh;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Black overlay that fades out */
.black-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1001;
    opacity: 1;
    visibility: visible;
    animation: fadeOut 0.8s ease-out forwards;
}

/* Page transition overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

.loading-screen.hidden {
    animation: softFade 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes softFade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.loading-screen .container {
    display: flex;
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.loading-screen .left-half {
    background-color: #4F6D7A;
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.5s ease-in-out;
}

.loading-screen .right-half {
    background-color: #C0D6DF;
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.5s ease-in-out;
}

/* Keyframe animation for slide-out with fade effect */
@keyframes slide-out-left {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slide-out-right {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Animation classes */
.loading-screen .left-half.slide-out {
    animation: slide-out-left 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.loading-screen .right-half.slide-out {
    animation: slide-out-right 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Top Left - Blue-gray Background */
.loading-screen .top-left {
    position: absolute;
    top: 3%;
    left: 3%;
    color: #E8F4F8;
    font-size: 1.2vw;
    font-weight: normal;
    font-family: 'Arial', sans-serif;
    animation: waveInLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

@keyframes waveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px) translateY(-20px);
    }
    50% {
        transform: translateX(20px) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.loading-screen .top-left .highlight {
    font-weight: bold;
    font-size: 1.3vw;
}

/* Top Right - Light blue-gray Background */
.loading-screen .top-right {
    position: absolute;
    top: 3%;
    right: 3%;
    color: #2C3E50;
    font-size: 1vw;
    text-align: right;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    animation: waveInRight 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

@keyframes waveInRight {
    0% {
        opacity: 0;
        transform: translateX(150px) translateY(-20px);
    }
    50% {
        transform: translateX(-20px) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.loading-screen .top-right .highlight {
    font-weight: bold;
}

.loading-screen .top-right .choir {
    font-size: 1.2vw;
    margin-top: 0.5vh;
}

/* Bottom Left - Blue-gray Background */
.loading-screen .bottom-left {
    position: absolute;
    bottom: 3%;
    left: 3%;
    color: #E8F4F8;
    font-size: 0.9vw;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
    animation: elasticUp 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.7s both;
}

@keyframes elasticUp {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    60% {
        transform: translateY(-15px) scale(1.05);
    }
    80% {
        transform: translateY(5px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Arrow Symbol - Bottom Right */
.loading-screen .arrow-symbol {
    position: absolute;
    bottom: 3%;
    right: 3%;
    display: flex;
    align-items: center;
    gap: 0.3vw;
    animation: arrowSpinIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

@keyframes arrowSpinIn {
    0% {
        opacity: 0;
        transform: translateX(80px) translateY(60px) rotate(-180deg) scale(0);
    }
    60% {
        transform: translateX(-10px) translateY(-10px) rotate(10deg) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
    }
}

.loading-screen .arrow-left {
    width: 0;
    height: 0;
    border-top: 0.5vw solid transparent;
    border-bottom: 0.5vw solid transparent;
    border-right: 1.5vw solid #4F6D7A;
}

.loading-screen .line-orange {
    width: 1vw;
    height: 0.2vw;
    background-color: #4F6D7A;
}

.loading-screen .line-white {
    width: 1vw;
    height: 0.2vw;
    background-color: #2C3E50;
}

.loading-screen .arrow-right {
    width: 0;
    height: 0;
    border-top: 0.5vw solid transparent;
    border-bottom: 0.5vw solid transparent;
    border-left: 1.5vw solid #2C3E50;
}

/* Title with split color effect - Centered */
.loading-screen .title-container {
    position: fixed;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    pointer-events: none;
    animation: titleZoomIn 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

@keyframes titleZoomIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) translateY(50px);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15) translateY(-10px);
    }
    70% {
        transform: translate(-50%, -50%) scale(0.95) translateY(3px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) translateY(0);
    }

}

.loading-screen .title-main {
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 14vw;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-align: center;
    position: relative;
    width: 100vw;
}

.loading-screen .title-line {
    position: relative;
    white-space: nowrap;
    height: 1em;
    text-align: center;
    width: 100%;
}

.loading-screen .title-text-wrapper {
    position: relative;
    display: inline-block;
}

/* Erasing animation keyframes - fast wipe from right to left */
@keyframes erase-left {
    0% {
        clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    }
    100% {
        clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
    }
}

@keyframes erase-right {
    0% {
        clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    }
    100% {
        clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    }
}

/* Left half of text (light blue-gray on dark blue-gray background) */
.loading-screen .title-text-left {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    color: #C0D6DF;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    white-space: nowrap;
    z-index: 2;
    visibility: visible;
    /* Create stroke-like mask pattern - diagonal strokes like pencil marks */
    mask: repeating-linear-gradient(
        45deg,
        black 0px,
        black 4px,
        transparent 4px,
        transparent 8px
    );
    -webkit-mask: repeating-linear-gradient(
        45deg,
        black 0px,
        black 4px,
        transparent 4px,
        transparent 8px
    );
    mask-size: 200% 200%;
    -webkit-mask-size: 200% 200%;
    mask-position: 0% 0%;
    -webkit-mask-position: 0% 0%;
}

.loading-screen .title-text-left.erase {
    animation: erase-left 0.4s ease-out forwards;
    animation-delay: 0.35s;
}

/* Right half of text (dark blue-gray on light blue-gray background) */
.loading-screen .title-text-right {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    color: #4F6D7A;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    white-space: nowrap;
    z-index: 2;
    visibility: visible;
    /* Create stroke-like mask pattern - diagonal strokes like pencil marks */
    mask: repeating-linear-gradient(
        45deg,
        black 0px,
        black 4px,
        transparent 4px,
        transparent 8px
    );
    -webkit-mask: repeating-linear-gradient(
        45deg,
        black 0px,
        black 4px,
        transparent 4px,
        transparent 8px
    );
    mask-size: 200% 200%;
    -webkit-mask-size: 200% 200%;
    mask-position: 0% 0%;
    -webkit-mask-position: 0% 0%;
}

.loading-screen .title-text-right.erase {
    animation: erase-right 0.4s ease-in forwards;
    animation-delay: 0s;
}

/* Loading text with stroke animation */
.loading-text-container {
    position: fixed;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
    pointer-events: none;
    animation: loadingTextElastic 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.9s both;
}

@keyframes loadingTextElastic {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(80px) scale(0.4);
    }
    50% {
        transform: translateX(-50%) translateY(-20px) scale(1.1);
    }
    70% {
        transform: translateX(-50%) translateY(8px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.loading-text-svg {
    width: 320px;
    height: 100px;
    overflow: visible;
}

.loading-text {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    /* Fallback animation if JS doesn't run */
    animation: drawLoadingFallback 3s ease-out 0s forwards;
}

.loading-text.animated {
    animation: none;
}

@keyframes drawLoadingFallback {
    to {
        stroke-dashoffset: 0;
    }
}

.loading-text-container.fade-out {
    animation: fadeOutLoading 0.5s ease-out forwards;
}

@keyframes fadeOutLoading {
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Mobile responsive adjustments for loading screen */
@media (max-width: 768px) {
    .loading-screen .top-left {
        font-size: 13px;
        top: 5%;
        left: 5%;
        line-height: 1.4;
    }
    
    .loading-screen .top-left .highlight {
        font-size: 15px;
        font-weight: bold;
    }
    
    .loading-screen .top-right {
        font-size: 12px;
        top: 5%;
        right: 5%;
        line-height: 1.6;
        text-align: right;
    }
    
    .loading-screen .top-right .highlight {
        font-size: 14px;
        font-weight: bold;
        margin-top: 4px;
        display: block;
    }
    
    .loading-screen .top-right .choir {
        font-size: 14px;
    }
    
    .loading-screen .bottom-left {
        font-size: 11px;
        bottom: 5%;
        left: 5%;
        line-height: 1.8;
        max-width: 85%;
    }
    
    .loading-screen .title-container {
        top: 40%;
        transform: translate(-50%, -50%);
        width: 100vw;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .loading-screen .title-main {
        font-size: 12vw;
        line-height: 1.1;
        letter-spacing: 0.02em;
        width: 100%;
        text-align: center;
    }
    
    .loading-screen .title-line {
        margin-bottom: 2px;
        text-align: center;
    }
    
    .loading-screen .title-text-wrapper {
        display: inline-block;
    }
    
    .loading-screen .arrow-symbol {
        bottom: 5%;
        right: 5%;
        gap: 3px;
    }
    
    .loading-screen .arrow-left {
        border-top-width: 4px;
        border-bottom-width: 4px;
        border-right-width: 8px;
    }
    
    .loading-screen .line-orange,
    .loading-screen .line-white {
        width: 6px;
        height: 1.5px;
    }
    
    .loading-screen .arrow-right {
        border-top-width: 4px;
        border-bottom-width: 4px;
        border-left-width: 8px;
    }
    
    /* Loading text mobile adjustments */
    .loading-text-container {
        bottom: 18%;
    }
    
    .loading-text-svg {
        width: 200px;
        height: 65px;
    }
    
    .loading-text {
        stroke-width: 2.5;
        font-size: 50px !important;
    }
    
    /* Improve overall spacing on mobile */
    .loading-screen .container {
        padding: 0;
    }
    
    /* Make diagonal lines thinner on mobile */
    .loading-screen .title-text-left,
    .loading-screen .title-text-right {
        mask: repeating-linear-gradient(
            45deg,
            black 0px,
            black 2px,
            transparent 2px,
            transparent 4px
        );
        -webkit-mask: repeating-linear-gradient(
            45deg,
            black 0px,
            black 2px,
            transparent 2px,
            transparent 4px
        );
        mask-size: 200% 200%;
        -webkit-mask-size: 200% 200%;
    }
}

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

.logo-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: z-index 0s;
}

.logo-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    opacity: 0;
    transform: translate(10px, 4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    order: 2;
}

.logo-wrapper:hover .logo-label {
    opacity: 1;
    transform: translate(0, 4px);
}

.logo-initials {
    position: relative;
    width: 120px;
    height: 90px;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.logo-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 0 12px 0 12px;
    clip-path: path('M 0 0 L 120 0 L 120 60 Q 120 90 90 90 L 0 90 Z');
}

.logo-text {
    position: absolute;
    top: 25px;
    left: 30px;
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
    line-height: 1;
    z-index: 1;
}

.logo-circle {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #ffffff;
    z-index: 1;
    clip-path: path('M 0 0 L 18 0 L 18 18 Q 9 18 0 9 Z');
}

.logo-circle-1 {
    top: 30px;
    left: 128px;
}

.logo-circle-2 {
    top: 52px;
    left: 128px;
}

.logo-block {
    position: absolute;
    top: 70px;
    left: 15px;
    width: 60px;
    height: 8px;
    background: #000000;
    z-index: 1;
}

.hero-container {
    width: 100%;
    height: 100svh;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
    scroll-snap-align: start;
}

/* Allow scrolling when business enquiries container is present */
.hero-container:has(.business-enquiries-container) {
    overflow-y: auto;
    height: auto;
    min-height: 100svh;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: none;
}

.hero-image.active {
    display: block;
}

.hero-video.hidden {
    display: none;
}

.screen-frame {
    position: fixed;
    inset: 15px;
    border-radius: 8px;

    /*
      White matte outside the frame (only the outside ring is white).
      Use vmax instead of a huge pixel value for smoother corner rendering.
    */
    box-shadow: 0 0 0 100vmax #ffffff;

    /* border line stays white */
    border: 1px solid rgba(255, 255, 255, 0.95);
    background: transparent;
    pointer-events: none;
    box-sizing: border-box;
    z-index: 999;

    /* Help anti-aliasing on some GPUs/browsers */
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: border-color 0.3s ease;
}


.menu-button-wrapper {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: z-index 0s;
}

.menu-panel.active ~ .menu-button-wrapper {
    z-index: 99999;
}

.menu-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.menu-button-wrapper:hover .menu-label {
    opacity: 1;
    transform: translateX(0);
}

.menu-label-closed {
    display: none;
}

.menu-button-wrapper.menu-open .menu-label-open {
    display: none;
}

.menu-button-wrapper.menu-open .menu-label-closed {
    display: block;
}

.menu-button {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
}

.menu-button:focus,
.menu-button:focus-visible,
.menu-button:active {
    outline: none !important;
    box-shadow: none !important;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-icon {
    width: 32px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    min-height: 2px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    transition: background-color 0.3s ease, background 0.3s ease;
}

.menu-icon span:nth-child(2) {
    height: 2px;
    min-height: 2px;
    width: 100%;
    flex-shrink: 0;
    display: block;
}

.menu-button:hover .menu-icon span {
    background: rgba(255, 255, 255, 1);
}

/* Menu color when over white sections */
.menu-button-wrapper.on-white-section .menu-icon span {
    background: rgba(0, 0, 0, 0.95) !important;
}

.menu-button-wrapper.on-white-section .menu-button:hover .menu-icon span {
    background: rgba(0, 0, 0, 1) !important;
}

.menu-button-wrapper.on-white-section .menu-label {
    color: rgba(0, 0, 0, 0.9) !important;
}

/* Logo label color when over white sections */
.logo-wrapper.on-white-section .logo-label {
    color: rgba(0, 0, 0, 0.9) !important;
}

/* Menu button border color when over white sections */
.menu-button-wrapper.on-white-section .menu-button {
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
}

.menu-button-wrapper.on-white-section .menu-button:hover {
    background: rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.5) !important;
}

/* Ensure mobile menu icon color changes work */
@media (max-width: 768px) {
    .menu-button-wrapper.on-white-section .menu-icon span {
        background: rgba(0, 0, 0, 0.95) !important;
    }
    
    .menu-button-wrapper.on-white-section .menu-button:hover .menu-icon span,
    .menu-button-wrapper.on-white-section .menu-button:active .menu-icon span,
    .menu-button-wrapper.on-white-section .menu-button:focus .menu-icon span {
        background: rgba(0, 0, 0, 1) !important;
    }
    
    .menu-button-wrapper.on-white-section .menu-label {
        color: rgba(0, 0, 0, 0.9) !important;
    }
    
    .menu-button-wrapper.on-white-section .menu-button {
        border: 1px solid rgba(0, 0, 0, 0.3) !important;
        border-color: rgba(0, 0, 0, 0.3) !important;
    }
    
    .menu-button-wrapper.on-white-section .menu-button:hover {
        background: rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(0, 0, 0, 0.5) !important;
    }
    
    /* Override any default mobile styles that might interfere */
    .menu-button-wrapper.on-white-section .menu-icon span {
        background-color: rgba(0, 0, 0, 0.95) !important;
    }
    
}

.menu-panel {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100svh !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    z-index: 99999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    overflow: hidden;
    will-change: transform, opacity;
    transform: translateZ(0);
    isolation: isolate;
}

.menu-panel.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.menu-panel.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 99999 !important;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    z-index: 10001;
    transition: all 0.3s ease, border-color 0.3s ease;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.menu-left {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    height: 80vh;
}

.photo-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
    overflow: hidden;
    position: relative;
}

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

.menu-panel.active .photo-item {
    opacity: 1;
    transform: scale(1);
}

.menu-panel.active .photo-item:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-panel.active .photo-item:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-panel.active .photo-item:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-panel.active .photo-item:nth-child(4) {
    transition-delay: 0.4s;
}

.menu-right {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: visible;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 60px;
    will-change: transform, opacity;
    transform: translateZ(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.expertise-submenu {
    margin-top: 60px;
}

.expertise-submenu li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.expertise-submenu.visible li {
    opacity: 1;
    transform: translateX(0);
}

.expertise-submenu.visible li:nth-child(1) {
    transition-delay: 0.1s;
}

.expertise-submenu.visible li:nth-child(2) {
    transition-delay: 0.2s;
}

.expertise-submenu.visible li:nth-child(3) {
    transition-delay: 0.3s;
}

.expertise-submenu.visible li:nth-child(4) {
    transition-delay: 0.4s;
}

.expertise-submenu.visible li:nth-child(5) {
    transition-delay: 0.5s;
}

.expertise-submenu.visible li:nth-child(6) {
    transition-delay: 0.6s;
}

.menu-list li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: relative;
}

.menu-divider {
    height: 1px;
    width: 100px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    list-style: none;
}

.menu-panel.active .menu-divider {
    opacity: 1;
    transform: translateX(0);
}

.menu-item-with-submenu {
    position: relative;
    display: inline-block;
}

.menu-panel.active .menu-list li {
    opacity: 1;
    transform: translateX(0);
}

.menu-panel.active .menu-list li:nth-child(1) {
    transition-delay: 0.2s;
}

.menu-panel.active .menu-divider {
    transition-delay: 0.35s;
}

.menu-panel.active .menu-list li:nth-child(3) {
    transition-delay: 0.4s;
}

.menu-panel.active .menu-list li:nth-child(4) {
    transition-delay: 0.5s;
}

.menu-panel.active .menu-list li:nth-child(5) {
    transition-delay: 0.6s;
}

.menu-panel.active .menu-list li:nth-child(6) {
    transition-delay: 0.7s;
}

.menu-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: visible;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.menu-list a:hover {
    color: rgba(255, 255, 255, 1);
    letter-spacing: 6px;
}

.menu-animation {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.menu-list a:hover .menu-animation,
.menu-list a.active .menu-animation {
    opacity: 1;
}

.menu-text {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    line-height: 48px;
}

/* Connecting line from text to icon */
.menu-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-list a:hover .menu-text::after {
    width: 100%;
}


/* Violin SVG animation for MUSIC */
.music-animation {
    display: inline-block;
    position: relative;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 48px;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.violin-svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    animation: violinTilt 0.8s ease-in-out infinite;
    transform-origin: center center;
    filter: brightness(0) invert(1);
}

.menu-list a:hover .music-animation,
.menu-list a.active .music-animation {
    opacity: 1;
}

@keyframes violinTilt {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

/* Audio Visual animation - Headphones */
.av-animation {
    display: inline-block;
    position: relative;
    margin-left: 15px;
    width: 60px;
    height: 42px;
    vertical-align: middle;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 48px;
}

.headphones-svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    animation: headphonesPulse 1.2s ease-in-out infinite;
    filter: brightness(0) invert(1);
}

.menu-list a:hover .av-animation,
.menu-list a.active .av-animation {
    opacity: 1;
}

@keyframes headphonesPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Photography animation - Camera SVG */
.photography-animation {
    display: inline-block;
    position: relative;
    margin-left: 15px;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 48px;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.camera-svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    animation: cameraFlash 1.5s ease-in-out infinite;
}

.menu-list a:hover .photography-animation,
.menu-list a.active .photography-animation {
    opacity: 1;
}

@keyframes cameraFlash {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
        filter: brightness(1.2);
    }
}

/* Home animation */
.home-animation {
    display: inline-block;
    position: relative;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 48px;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.home-animation::before {
    content: '⌂';
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    animation: pulseHome 1.5s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.menu-list a:hover .home-animation,
.menu-list a.active .home-animation {
    opacity: 1;
}

@keyframes pulseHome {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Infrastructure animation */
.infrastructure-animation {
    display: inline-block;
    position: relative;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 48px;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.infrastructure-animation::before {
    content: '⚙';
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    animation: pulseInfrastructure 1.5s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.menu-list a:hover .infrastructure-animation,
.menu-list a.active .infrastructure-animation {
    opacity: 1;
}

@keyframes pulseInfrastructure {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(15deg);
        opacity: 1;
    }
}

/* About animation */
.about-animation {
    display: inline-block;
    position: relative;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 48px;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.about-animation::before {
    content: '👤';
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    animation: pulseAbout 1.5s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.menu-list a:hover .about-animation,
.menu-list a.active .about-animation {
    opacity: 1;
}

@keyframes pulseAbout {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Inspiration animation */
.inspiration-animation {
    display: inline-block;
    position: relative;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 48px;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.inspiration-animation::before {
    content: '💡';
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    animation: pulseInspiration 1.5s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.menu-list a:hover .inspiration-animation,
.menu-list a.active .inspiration-animation {
    opacity: 1;
}

@keyframes pulseInspiration {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
        filter: brightness(0.9);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
        filter: brightness(1.2);
    }
}

/* Expertise animation */
.expertise-animation {
    display: inline-block;
    position: relative;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 48px;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.expertise-animation::before {
    content: '→';
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    animation: pulseExpertise 1.5s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.menu-list a:hover .expertise-animation,
.menu-list a.active .expertise-animation {
    opacity: 1;
}

@keyframes pulseExpertise {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) translateX(5px);
        opacity: 1;
    }
}

/* Back animation */
.back-animation {
    display: inline-block;
    position: relative;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 48px;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.back-animation::before {
    content: '←';
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    animation: pulseBack 1.5s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.menu-list a:hover .back-animation,
.menu-list a.active .back-animation {
    opacity: 1;
}

@keyframes pulseBack {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) translateX(-5px);
        opacity: 1;
    }
}

.menu-expander {
    cursor: pointer;
}

/* Business animation */
.business-animation {
    display: inline-block;
    position: relative;
    margin-left: 15px;
    width: 50px;
    height: 42px;
    vertical-align: middle;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 48px;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.business-svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    animation: businessPulse 1.5s ease-in-out infinite;
}

.menu-list a:hover .business-animation,
.menu-list a.active .business-animation {
    opacity: 1;
}

@keyframes businessPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.menu-list a.active::after {
    display: none;
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
}

.menu-item-with-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu li {
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.submenu li:last-child {
    margin-bottom: 0;
}

.menu-panel.active .submenu li {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-item-with-submenu:hover .submenu li {
    opacity: 1;
    transform: translateX(0);
}

.menu-item-with-submenu:hover .submenu li:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-item-with-submenu:hover .submenu li:nth-child(2) {
    transition-delay: 0.15s;
}

.submenu a {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.submenu a:hover {
    color: rgba(255, 255, 255, 1);
}

.menu-brand {
    margin-top: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-panel.active .menu-brand {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.85s;
}

.brand-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 1px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin: 0;
}

.menu-business {
    margin-top: 40px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, margin-top 0.4s ease;
}

.menu-right.expertise-active .menu-business {
    margin-top: 80px;
}

.menu-panel.active .menu-business {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.7s;
}

.business-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    padding: 12px 32px;
    cursor: pointer;
    transition: all 0.3s ease, border-color 0.3s ease;
    border-radius: 2px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
}

.business-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 1);
}

.menu-social {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: 40px;
    padding-bottom: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-panel.active .menu-social {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.social-links {
    display: flex;
    gap: 30px;
}

.menu-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease, letter-spacing 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
}

.menu-social a:hover {
    color: rgba(255, 255, 255, 1);
    letter-spacing: 2px;
    transform: translateX(4px);
}

.menu-social a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.menu-social a:hover::after {
    width: 100%;
}

/* OnlyFans Logo Styling */
.onlyfans-logo {
    height: 16px;
    width: auto;
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    object-fit: contain;
}

.onlyfans-link:hover .onlyfans-logo {
    opacity: 1;
    transform: translateX(4px);
}

.onlyfans-link::after {
    display: none;
}

/* OnlyFans Popup Styles - Windows 11 Design */
.onlyfans-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.1, 0.9, 0.2, 1), visibility 0.25s cubic-bezier(0.1, 0.9, 0.2, 1);
    pointer-events: none;
}

.onlyfans-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.onlyfans-popup-content {
    /* Windows 11 Acrylic/Mica effect */
    background: rgba(243, 243, 243, 0.85);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 0;
    width: 380px;
    max-width: 90%;
    position: relative;
    transform: scale(0.96) translateY(10px);
    transition: transform 0.3s cubic-bezier(0.1, 0.9, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.onlyfans-popup.active .onlyfans-popup-content {
    transform: scale(1) translateY(0);
}

/* Windows 11 Title Bar */
.onlyfans-popup-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 6px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-height: 32px;
}

.onlyfans-popup-close {
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.15s cubic-bezier(0.1, 0.9, 0.2, 1);
    padding: 0;
    font-family: 'Segoe UI', 'Inter', sans-serif;
    position: relative;
}

.onlyfans-popup-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.9);
}

.onlyfans-popup-close:active {
    background: rgba(0, 0, 0, 0.12);
    transform: scale(0.95);
}

/* Windows 11 Content Area - Slim Single Line */
.onlyfans-popup-body {
    padding: 24px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.onlyfans-popup-text {
    font-family: 'Segoe UI', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.9);
    letter-spacing: -0.01em;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

/* Windows 11 Footer with OK Button */
.onlyfans-popup-footer {
    padding: 10px 20px 12px;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-height: 52px;
}

.onlyfans-popup-ok {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.9);
    font-family: 'Segoe UI', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding: 5px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.1, 0.9, 0.2, 1);
    min-width: 75px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.onlyfans-popup-ok:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.onlyfans-popup-ok:active {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(0.98);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .onlyfans-popup-content {
        background: rgba(32, 32, 32, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    
    .onlyfans-popup-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.05);
    }
    
    .onlyfans-popup-close {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .onlyfans-popup-close:hover {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .onlyfans-popup-close:active {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .onlyfans-popup-text {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .onlyfans-popup-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.hero-content.visible {
    opacity: 1;
}

.name-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0 !important;
    width: 100%;
}

/* Backup header images for Apple devices */
.name-backup-mobile,
.name-backup-pc {
    display: none;
}

/* Mobile backup image sizing */
.name-backup-mobile {
    max-width: 95%;
    max-height: 80%;
}

/* PC backup image sizing */
.name-backup-pc {
    max-width: 85%;
    max-height: 85%;
}

/* Hide SVG name when Apple device backup is active */
.name-container.apple-device-hidden .name-svg {
    display: none !important;
}

/* Simple fixed layout for backup image and text on mobile */
@media (max-width: 768px) {
    .name-container.apple-device-hidden {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        position: relative;
        transform: translateY(-13px);
    }
    
    /* Position backup image inside name-container */
    .name-container.apple-device-hidden .name-backup-mobile.apple-device-active {
        position: relative;
        display: block;
        width: auto;
        height: auto;
        max-width: 95%;
        max-height: 80%;
        object-fit: contain;
        order: 1;
        margin: 0;
    }
    
    /* Position rotating title below image in flex container */
    .name-container.apple-device-hidden .rotating-title {
        position: relative;
        order: 2;
        margin-top: 23px !important;
        width: 100%;
    }
}

/* Show backup images when active */
.name-backup-mobile.apple-device-active,
.name-backup-pc.apple-device-active {
    display: block;
}

/* Position backup PC image on desktop */
@media (min-width: 769px) {
    .name-container.apple-device-hidden .name-backup-pc.apple-device-active {
        position: relative;
        margin-top: 81px;
    }
}

/* Position rotating title below backup image on desktop Apple devices */
@media (min-width: 769px) {
    .name-container.apple-device-hidden .rotating-title {
        margin-top: 22px !important;
        position: relative;
    }
}

@media (min-width: 769px) {
    .rotating-title {
        margin-top: -40px !important;
    }
}

.name-container .name-svg {
    flex-shrink: 0;
    flex-grow: 0;
}

.rotating-title {
    margin-top: -40px;
    min-height: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* On mobile, position rotating title between Daniel and Petrenko */
@media (max-width: 768px) {
    .name-container {
        position: relative;
    }
    
    .rotating-title {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: 0;
        z-index: 6;
        width: 100%;
        pointer-events: none;
        /* Position will be set by JavaScript based on name positions */
    }
    
}

.title-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile styling for rotating title to match old design */
@media (max-width: 768px) {
    .title-text {
        color: rgba(213, 213, 213, 0.9);
        font-weight: 400;
        letter-spacing: 1.5px;
    }
}

/* Tweak this to control how slow the write-on feels */
:root {
    --name-draw-duration: 12s;
}

.name-svg {
    width: 90%;
    max-width: 1200px;
    height: auto;
    overflow: visible;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.name-path {
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 2;
    fill: none !important; /* Ensure no fill on mobile */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
    /* dash values are set in JS based on actual path length */
    will-change: transform, opacity, stroke-dashoffset; /* Optimize for animation on iOS */
    transform: translateZ(0); /* Force hardware acceleration for iOS */
    backface-visibility: hidden;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 12s linear;
}

.animations-ready .name-path {
    stroke-dashoffset: 0;
}

.name-fallback {
    display: none;
    stroke-dasharray: 5000;
    stroke-dashoffset: 5000;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
    animation: strokeDraw var(--name-draw-duration) linear forwards;
}

@keyframes strokeDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 1s ease-out 3s forwards;
    transition: opacity 0.3s ease;
    width: fit-content;
}

.scroll-indicator:hover {
    opacity: 1 !important;
}

.scroll-indicator:hover .scroll-text {
    color: rgba(255, 255, 255, 1);
}

.scroll-indicator:hover .scroll-arrow {
    color: rgba(255, 255, 255, 1);
    transform: translateY(4px);
}

.scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.9);
    animation: bounce 2s infinite;
}

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


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Improve mobile viewport handling */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Reduce animation complexity for mobile GPUs */
    .menu-animation,
    .music-animation,
    .av-animation,
    .photography-animation,
    .home-animation,
    .infrastructure-animation,
    .business-animation,
    .about-animation,
    .expertise-animation,
    .back-animation {
        animation-duration: 1.2s !important;
    }
    
    .screen-frame {
        inset: 10px;
        border-radius: 6px;
    }

    .logo-wrapper {
        z-index: 99999;
    }
    
    .logo-label {
        font-size: 12px;
    }

    .logo-initials {
        width: 80px;
        height: 60px;
    }

    .logo-panel {
        clip-path: path('M 0 0 L 80 0 L 80 40 Q 80 60 60 60 L 0 60 Z');
    }

    .logo-text {
        top: 18px;
        left: 20px;
        font-size: 32px;
    }
    
    /* Hero section mobile improvements */
    .hero-container {
        min-height: 100svh;
        height: 100svh;
        overflow: hidden;
    }
    
    .hero-video,
    .hero-image {
        object-position: center;
    }
    
    .hero-content {
        padding: 0 15px;
    }

    .name-svg {
        width: 95%;
        max-width: none;
        overflow: visible;
        transform: translateY(-30px);
        opacity: 0;
        animation: fadeInName 1.5s ease-in-out forwards;
        animation-delay: 0.5s;
    }
    
    @keyframes fadeInName {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .name-fallback {
        font-size: 260px;
    }

    .scroll-indicator {
        bottom: 40px;
    }

    .scroll-text {
        font-size: 12px;
    }

    .menu-button-wrapper {
        top: 25px;
        right: 25px;
    }

    .menu-button {
        width: 45px;
        height: 45px;
        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        transition: all 0.3s ease, border-color 0.3s ease !important;
    }
    
    /* Override border for white sections on mobile - must come after base rule */
    .menu-button-wrapper.on-white-section .menu-button {
        border: 1px solid rgba(0, 0, 0, 0.3) !important;
        border-color: rgba(0, 0, 0, 0.3) !important;
    }
    
    .menu-button-wrapper.on-white-section .menu-button:hover {
        background: rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(0, 0, 0, 0.5) !important;
        border-color: rgba(0, 0, 0, 0.5) !important;
    }

    .menu-button:hover {
        background: rgba(255, 255, 255, 0.05) !important;
    }

    .menu-button-wrapper {
        background: transparent;
    }

    .menu-label {
        font-size: 12px;
    }

    .menu-icon {
        width: 20px;
        height: 15px;
    }

    .menu-panel {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .menu-left {
        display: none;
    }

    .menu-right {
        padding: 30px 20px 20px 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        min-height: calc(100vh - 60px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-list {
        margin-top: 10px;
        margin-bottom: 0;
        flex: 1;
    }
    
    /* Expertise menu mobile improvements */
    .expertise-submenu {
        margin-top: 20px;
    }
    
    .menu-right.expertise-active .menu-business {
        margin-top: 60px;
    }

    /* Compressed state - default and final state */
    .menu-list li {
        margin-bottom: 6px;
    }
    
    .menu-list li:last-child {
        margin-bottom: 10px;
    }
    
    /* Expand gaps during each item's animation, then compress back */
    /* Each animation: expand (0.3s) + stay expanded (1.3s) + compress (0.3s) = 1.9s total */
    /* Item 1: animation starts at 1s */
    .menu-panel.active .menu-list li:nth-child(1) {
        animation: gapExpandCompress 1.9s ease 1s forwards;
    }
    
    /* Item 3: animation starts at 2s */
    .menu-panel.active .menu-list li:nth-child(3) {
        animation: gapExpandCompress 1.9s ease 2s forwards;
    }
    
    /* Item 4: animation starts at 3s */
    .menu-panel.active .menu-list li:nth-child(4) {
        animation: gapExpandCompress 1.9s ease 3s forwards;
    }
    
    /* Item 5: animation starts at 4s */
    .menu-panel.active .menu-list li:nth-child(5) {
        animation: gapExpandCompress 1.9s ease 4s forwards;
    }
    
    /* Item 6: animation starts at 5s */
    .menu-panel.active .menu-list li:nth-child(6) {
        animation: gapExpandCompressLast 1.9s ease 5s forwards;
    }
    
    @keyframes gapExpandCompress {
        0% {
            margin-bottom: 6px;
        }
        15.8% {
            margin-bottom: 12px;
        }
        84.2% {
            margin-bottom: 12px;
        }
        100% {
            margin-bottom: 6px;
        }
    }
    
    @keyframes gapExpandCompressLast {
        0% {
            margin-bottom: 10px;
        }
        15.8% {
            margin-bottom: 15px;
        }
        84.2% {
            margin-bottom: 15px;
        }
        100% {
            margin-bottom: 10px;
        }
    }

    /* Staggered animation for mobile - one by one */
    .menu-panel.active .menu-list li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .menu-panel.active .menu-divider {
        transition-delay: 0.25s;
    }

    .menu-panel.active .menu-list li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .menu-panel.active .menu-list li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .menu-panel.active .menu-list li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .menu-panel.active .menu-list li:nth-child(6) {
        transition-delay: 0.6s;
    }

    /* Compressed state - default and final state */
    .menu-list a {
        font-size: 24px;
        padding: 6px 0;
        display: block;
        min-height: 40px;
        display: flex;
        align-items: center;
        transition: font-size 0.4s ease, padding 0.4s ease, min-height 0.4s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Expanded state - during animations (menu just opened) */
    .menu-panel.active .menu-list a {
        font-size: 28px;
        padding: 8px 0;
        min-height: 44px;
        animation: compressTextAfterAnimation 0.4s ease 1.2s forwards;
    }
    
    @keyframes compressTextAfterAnimation {
        to {
            font-size: 24px;
            padding: 6px 0;
            min-height: 40px;
        }
    }

    .menu-list a:hover {
        letter-spacing: 3px;
    }
    
    .menu-expander {
        cursor: pointer;
        touch-action: manipulation;
    }

    /* Sequential hover animation - each item activates then deactivates (plays once) */
    @keyframes mobileHoverSequence {
        0% {
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 2px;
        }
        10%, 20% {
            color: rgba(255, 255, 255, 1);
            letter-spacing: 6px;
        }
        30%, 100% {
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 2px;
        }
    }

    @keyframes mobileAnimationSequence {
        0% {
            opacity: 0;
        }
        10%, 20% {
            opacity: 1;
        }
        30%, 85% {
            opacity: 1;
        }
        90%, 100% {
            opacity: 0;
        }
    }

    @keyframes mobileUnderlineSequence {
       0% {
           width: 0;
       }
       10%, 20% {
           width: 100%;
       }
       30%, 100% {
           width: 0;
       }
   }
   
   /* Disable transition on mobile menu animations to allow fade-out */
   .menu-panel.active .menu-list li .menu-animation,
   .menu-panel.active .menu-list li .home-animation,
   .menu-panel.active .menu-list li .about-animation,
   .menu-panel.active .menu-list li .inspiration-animation,
   .menu-panel.active .menu-list li .music-animation,
   .menu-panel.active .menu-list li .infrastructure-animation,
   .menu-panel.active .menu-list li .av-animation,
   .menu-panel.active .menu-list li .photography-animation,
   .menu-panel.active .menu-list li .business-animation {
       transition: none !important;
   }

   /* Apply sequential animations to each menu item (plays once, starts 1s after menu opens) */
    .menu-panel.active .menu-list li:nth-child(1) a {
        animation: mobileHoverSequence 5s ease-in-out forwards;
        animation-delay: 1s;
    }

    .menu-panel.active .menu-list li:nth-child(1) .menu-animation,
    .menu-panel.active .menu-list li:nth-child(1) .home-animation {
        animation: mobileAnimationSequence 5s ease-in-out;
        animation-delay: 1s;
    }

    .menu-panel.active .menu-list li:nth-child(1) .menu-text::after {
        animation: mobileUnderlineSequence 5s ease-in-out forwards;
        animation-delay: 1s;
    }

    .menu-panel.active .menu-list li:nth-child(3) a {
        animation: mobileHoverSequence 5s ease-in-out forwards;
        animation-delay: 2s;
    }

    .menu-panel.active .menu-list li:nth-child(3) .menu-animation,
    .menu-panel.active .menu-list li:nth-child(3) .about-animation {
        animation: mobileAnimationSequence 5s ease-in-out;
        animation-delay: 2s;
    }

    .menu-panel.active .menu-list li:nth-child(3) .menu-text::after {
        animation: mobileUnderlineSequence 5s ease-in-out forwards;
        animation-delay: 2s;
    }

    .menu-panel.active .menu-list li:nth-child(4) a {
        animation: mobileHoverSequence 5s ease-in-out forwards;
        animation-delay: 2.5s;
    }

    .menu-panel.active .menu-list li:nth-child(4) .menu-animation,
    .menu-panel.active .menu-list li:nth-child(4) .inspiration-animation {
        animation: mobileAnimationSequence 5s ease-in-out;
        animation-delay: 2.5s;
    }

    .menu-panel.active .menu-list li:nth-child(4) .menu-text::after {
        animation: mobileUnderlineSequence 5s ease-in-out forwards;
        animation-delay: 2.5s;
    }

    .menu-panel.active .menu-list li:nth-child(5) a {
        animation: mobileHoverSequence 5s ease-in-out forwards;
        animation-delay: 3s;
    }

    .menu-panel.active .menu-list li:nth-child(5) .menu-animation,
    .menu-panel.active .menu-list li:nth-child(5) .expertise-animation {
        animation: mobileAnimationSequence 5s ease-in-out;
        animation-delay: 3s;
    }

    .menu-panel.active .menu-list li:nth-child(5) .menu-text::after {
        animation: mobileUnderlineSequence 5s ease-in-out forwards;
        animation-delay: 3s;
    }

    .menu-panel.active .menu-list li:nth-child(6) a {
        animation: mobileHoverSequence 5s ease-in-out forwards;
        animation-delay: 4s;
    }

    .menu-panel.active .menu-list li:nth-child(6) .menu-animation,
    .menu-panel.active .menu-list li:nth-child(6) .business-animation {
        animation: mobileAnimationSequence 5s ease-in-out;
        animation-delay: 4s;
    }

    .menu-panel.active .menu-list li:nth-child(6) .menu-text::after {
        animation: mobileUnderlineSequence 5s ease-in-out forwards;
        animation-delay: 4s;
    }

    .menu-divider {
        margin: 8px 0;
    }

    .menu-close {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
    }

    .menu-item-with-submenu {
        display: block;
    }

    .submenu {
        position: static;
        margin-left: 0;
        margin-top: 15px;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transform: none;
        white-space: normal;
        overflow: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
    }

    .menu-item-with-submenu.submenu-open .submenu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 200px !important;
        margin-top: 15px;
    }

    /* Prevent hover from closing the submenu when it's open via click */
    .menu-item-with-submenu:not(.submenu-open):hover .submenu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }

    /* Keep submenu open when clicked, even on hover */
    .menu-item-with-submenu.submenu-open .submenu,
    .menu-item-with-submenu.submenu-open:hover .submenu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 200px !important;
    }

    .menu-item-with-submenu.submenu-open:hover .submenu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 200px !important;
    }

    .submenu li {
        margin-bottom: 8px;
        opacity: 1;
        transform: none;
    }

    .menu-panel.active .submenu li {
        opacity: 1;
        transform: none;
    }

    .menu-item-with-submenu.submenu-open .submenu li {
        opacity: 1;
        transform: none;
    }

    .submenu a,
    .menu-item-with-submenu.submenu-open .submenu a {
        font-size: 20px !important;
        color: rgba(200, 200, 200, 0.75) !important;
        padding: 3px 0;
        display: block;
        min-height: 24px;
        display: flex;
        align-items: center;
    }
    
    .submenu a:hover,
    .menu-item-with-submenu.submenu-open .submenu a:hover {
        color: rgba(220, 220, 220, 0.9) !important;
    }

    .menu-business {
        margin-top: 0;
        margin-bottom: 25px;
        padding-top: 0;
        padding-bottom: 0;
        flex-shrink: 0;
    }

    .business-button {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
        min-height: 48px;
        touch-action: manipulation;
    }

    .menu-social {
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 15px;
        flex-shrink: 0;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 16px;
        row-gap: 12px;
        justify-content: center;
    }

    .menu-social a {
        font-size: 12px;
        padding: 8px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }
    
    .menu-social a:hover {
        transform: translateX(2px);
    }
    
    /* OnlyFans logo mobile styles */
    .onlyfans-logo {
        height: 14px;
    }
    
    .onlyfans-link:hover .onlyfans-logo {
        transform: translateX(2px);
    }
    
    /* OnlyFans popup mobile styles - Windows 11 */
    .onlyfans-popup-content {
        max-width: 90%;
        border-radius: 10px;
    }
    
    .onlyfans-popup-body {
        padding: 18px 16px 14px;
    }
    
    .onlyfans-popup-text {
        font-size: 13px;
        white-space: normal;
    }
    
    .onlyfans-popup-footer {
        padding: 8px 16px 12px;
    }
    
    .onlyfans-popup-ok {
        font-size: 12px;
        padding: 7px 20px;
        min-width: 70px;
        height: 30px;
    }
    
    .menu-brand {
        margin-top: 15px;
        flex-shrink: 0;
    }

    .brand-text {
        font-size: 10px;
        text-align: center;
    }

    .name-container {
        gap: 30px;
        padding: 0 10px;
    }

    .rotating-title {
        margin-top: 40px;
        height: 24px;
        width: 100%;
    }

    .title-text {
        font-size: 12px;
        letter-spacing: 1px;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Prevent text overflow on mobile */
    .menu-text {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Business Enquiries Page Styles */
.business-enquiries-container {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    will-change: transform, opacity;
    transform: translateZ(0) scale(0.9);
    transform-origin: center top;
    padding: 80px 20px 80px;
}

.business-enquiries-container.visible {
    opacity: 1;
}

.business-enquiries-content {
    max-width: 900px;
    width: 90%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 40px 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

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

.business-enquiries-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.business-enquiries-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.business-enquiries-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: visible;
}

.business-enquiries-form * {
    position: relative;
    z-index: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    padding: 12px 18px;
    transition: all 0.3s ease, border-color 0.3s ease;
    outline: none;
    resize: vertical;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    min-height: 100px;
    font-family: 'Inter', sans-serif;
}

.form-submit-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    cursor: pointer;
    transition: all 0.3s ease, border-color 0.3s ease;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.form-submit-button .submit-text,
.form-submit-button .submit-loader {
    position: relative;
    z-index: 1;
}

.form-submit-button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.form-submit-button:active:not(:disabled) {
    transform: translateY(0);
}

.form-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-loader {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-message {
    padding: 16px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease, border-color 0.3s ease;
    margin-top: 10px;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    height: auto;
    overflow: visible;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: rgba(76, 175, 80, 1);
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: rgba(244, 67, 54, 1);
}

/* Mobile styles for content sections */
@media (max-width: 768px) {
    .content-section {
        min-height: auto;
        height: auto;
        padding: 50px 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        overflow-x: hidden;
    }

    .content-section-inner {
        padding: 0 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: 1px;
        margin-bottom: 20px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .section-text {
        font-size: 14px;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .contact-section {
        padding: 15px 0;
        min-height: auto;
    }
    
    #get-in-touch {
        padding: 15px 0 20px 0;
    }
    
    #get-in-touch .content-section-inner {
        padding-top: 0;
    }

    .quote-section {
        padding: 30px 0 20px 0;
        overflow-x: hidden;
    }
    
    .quote-section .content-section-inner {
        padding: 0 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .quote-blockquote {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .quote-text {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        width: 100% !important;
        color: rgba(0, 0, 0, 0.70) !important;
        letter-spacing: 1.5px !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
    
    .quote-author {
        font-size: 11px !important;
        margin-top: 12px !important;
        color: rgba(0, 0, 0, 0.40) !important;
    }

    .about-me-image-container {
        margin: 0 auto 25px auto;
        width: 100%;
        max-width: 100%;
        padding: 0;
        position: relative;
    }

    .about-me-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        border-radius: 4px;
        display: block;
        margin: 0;
        object-fit: cover;
        object-position: center;
        transform: none !important;
        position: relative;
        animation: none !important;
        opacity: 1 !important;
    }
    
    .about-me-image-container {
        margin: 0 auto 25px auto;
    }
    
    .inspiration-button-wrapper {
        bottom: 30px !important;
        right: 15px !important;
        gap: 8px !important;
        z-index: 99998 !important;
    }
    
    .inspiration-text-group {
        margin-right: 5px;
    }
    
    .inspiration-curved-arrow {
        width: 55px;
        height: 45px;
        bottom: -35px;
        right: 8px;
    }
    
    .inspiration-button {
        padding-top: 1px;
    }
    
    .inspiration-text-line {
        font-size: 12px;
    }
    
    .inspiration-curved-arrow {
        width: 60px;
        height: 40px;
        bottom: -35px;
        right: -15px;
    }
    
    .inspiration-button {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    #about-me {
        position: relative;
        min-height: auto !important;
        height: auto !important;
        max-height: none !important;
        padding-top: 50px !important;
        padding-bottom: 100px !important;
        overflow: visible !important;
        display: flex !important;
        align-items: flex-start !important;
    }
    
    /* About Me section specific fixes */
    #about-me .content-section-inner {
        padding-top: 0;
        padding-bottom: 40px;
        max-width: 100%;
        min-height: auto;
    }
    
    #about-me .section-text {
        text-align: left;
        font-size: 15px !important;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .about-me-content-wrapper {
        flex-direction: column;
        gap: 25px;
        max-width: 100%;
    }
    
    .about-me-text-content {
        max-width: 100%;
        order: 2;
    }
    
    .about-me-image-container {
        margin: 0 auto;
        width: 100%;
        max-width: 280px;
        order: 1;
    }
    
    .about-me-image {
        max-width: 100%;
        width: 100%;
        max-width: 280px;
    }
    
    /* Fix long titles that overflow */
    #infrastructure .section-title,
    #photography .section-title {
        font-size: 22px;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }
    
    /* Ensure all sections fit properly */
    .content-section {
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .content-section-inner {
        overflow-x: hidden;
    }

    .quote-author {
        font-size: 12px;
        margin-top: 12px;
    }

    .contact-actions {
        margin-top: 12px;
        gap: 10px;
        width: 100%;
    }

    .business-enquiry-button {
        padding: 8px 16px;
        font-size: 11px;
        min-height: 36px;
        width: 100%;
        max-width: 100%;
        touch-action: manipulation;
    }

    .contact-socials {
        gap: 10px;
        row-gap: 4px;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
    }

    .contact-socials .social-link {
        font-size: 10px !important;
        padding: 4px 4px !important;
        min-height: 28px !important;
        touch-action: manipulation;
        white-space: nowrap;
        flex: 1 1 auto;
        text-align: center;
        letter-spacing: 0.5px !important;
        color: rgba(255, 255, 255, 0.4) !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        text-transform: uppercase !important;
    }
    
    .contact-socials {
        gap: 8px !important;
        row-gap: 4px !important;
        flex-wrap: nowrap !important;
    }

    .contact-copyright {
        margin-top: 10px;
        padding-top: 5px;
    }

    .copyright-text {
        font-size: 8px;
    }
    
    /* Reduce section title and text spacing for contact section */
    #get-in-touch .section-title {
        font-size: 20px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    #get-in-touch .section-text {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.7;
    }

    .contact-cat-image {
        position: absolute;
        bottom: -15px;
        left: 10px;
        z-index: 1000;
        pointer-events: none;
    }

    .cat-image {
        max-width: 250px;
    }
}

/* Mobile styles for business enquiries */
@media (max-width: 768px) {
    .business-enquiries-container {
        padding: 80px 10px 80px;
        align-items: flex-start;
    }

    .business-enquiries-content {
        padding: 35px 25px;
        width: 98%;
        max-width: none;
        margin: 0 auto;
    }

    .business-enquiries-title {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .business-enquiries-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
    }

    .business-enquiries-form {
        gap: 18px;
    }

    .form-group label {
        font-size: 11px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 14px 16px;
    }

    .form-submit-button {
        padding: 12px 28px;
        font-size: 11px;
        letter-spacing: 1.5px;
        width: 100%;
        margin-top: 10px;
    }
    
    .form-message {
        margin-top: 15px;
        padding: 12px;
        font-size: 12px;
    }
}

/* Content Section Styles */
.content-section {
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
    scroll-snap-align: start;
    overflow: visible;
}

/* Get in Touch section - don't fit screen */
.contact-section {
    min-height: auto;
    height: auto;
    padding: 40px 0 60px 0;
    scroll-snap-align: start;
    position: relative;
}

.contact-cat-image {
    position: absolute;
    bottom: -20px;
    left: 20px;
    z-index: 1000;
    pointer-events: none;
}

.cat-image {
    max-width: 350px;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}

/* White sections (default) */
.content-section.section-white {
    background: #ffffff;
}

/* Black sections */
.content-section.section-black {
    background: #000000;
}

.content-section-inner {
    max-width: 800px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    padding: 0 40px;
}

.content-section-inner.section-split-left,
.content-section-inner.section-split-right {
    max-width: 1200px;
    text-align: left;
}

/* About Me section specific adjustments */
#about-me .content-section-inner {
    max-width: 1200px;
}

/* About Me section text - desktop size */
#about-me .section-text {
    font-size: 19px;
    line-height: 1.6;
}

#about-me .drop-cap {
    float: left;
    font-size: 2.5em;
    line-height: 0.85;
    padding-right: 0.15em;
    padding-top: 0;
    font-weight: 600;
    font-family: 'Dancing Script', cursive;
    color: rgba(0, 0, 0, 0.85);
    font-style: normal;
}

/* Featured Album Section Styles */
.section-featured-album {
    padding: 60px 40px 80px 40px !important;
    background: #ffffff !important;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-album-header-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 60px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px 0 20px;
    position: relative;
}

.featured-album-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.featured-album-container {
    display: flex;
    width: 100%;
    margin: 0;
    min-height: auto;
    height: auto;
    gap: 40px;
    align-items: flex-start;
}

.featured-album-visual {
    flex: 0 0 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    max-height: 600px;
    min-height: 500px;
    border-radius: 8px;
}

.featured-album-background {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 8px;
    overflow: hidden;
}

.featured-artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.featured-artist-name {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}


.featured-album-details {
    flex: 1;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: visible;
    max-height: none;
    min-height: auto;
}

.featured-album-header {
    margin-bottom: 20px;
}



.featured-album-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.featured-label {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 20px 0;
    display: block;
    text-align: center;
    line-height: 1.2;
}

.buy-itunes-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FA243C;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.buy-itunes-btn:hover {
    background: #ff3d55;
}

.itunes-icon {
    font-size: 16px;
}

.featured-album-intro {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    max-width: 650px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    text-transform: none;
    letter-spacing: 0.3px;
}

.featured-album-info {
    margin-bottom: 20px;
    margin-top: 0;
    padding: 0;
    text-align: left;
    width: 100%;
    display: block;
    visibility: visible;
    min-height: 120px;
}

.featured-album-title,
.featured-album-artist,
.featured-album-release {
    display: block;
    min-height: 1.2em;
}

.featured-album-streaming {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    margin-top: 0;
    flex-wrap: wrap;
}

.streaming-link {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.streaming-link:hover {
    color: rgba(0, 0, 0, 0.9);
    border-color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.03);
}

.spotify-link:hover {
    color: #1DB954;
    border-color: #1DB954;
}

.youtube-link:hover {
    color: #FF0000;
    border-color: #FF0000;
}

.tidal-link:hover {
    color: #000000;
    border-color: #000000;
    background: rgba(0, 0, 0, 0.05);
}

.website-link:hover {
    color: rgba(0, 0, 0, 0.9);
    border-color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.03);
}

.website-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.website-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.streaming-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.streaming-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.spotify-icon {
    width: 22px;
    height: 22px;
}

.tidal-icon {
    width: 16px;
    height: 16px;
}

.featured-album-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 12px 0;
    padding: 0;
    text-transform: capitalize;
    text-align: left;
    width: 100%;
    display: block;
    min-height: 44px;
    line-height: 1.2;
}

.featured-album-artist {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 8px 0;
    padding: 0;
    text-align: left;
    display: block;
    min-height: 24px;
    line-height: 1.4;
}

.featured-album-release {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    display: block;
    min-height: 20px;
    line-height: 1.4;
}

.featured-album-description {
    flex: 1;
    margin-bottom: 0;
    margin-top: 15px;
    max-width: 500px;
}

.featured-album-description p {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    max-width: 100%;
}

.featured-album-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.view-previous-months-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.8);
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.view-previous-months-button:hover {
    color: rgba(0, 0, 0, 1);
    border-color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(-1px);
}

@media (max-width: 968px) {
    .section-featured-album {
        padding: 610px 20px 600px 20px !important;
        min-height: auto;
        overflow: visible;
        position: relative;
        box-sizing: border-box;
    }
    
    .featured-album-header-section {
        margin-bottom: 40px;
        margin-top: 0;
        padding: 0 10px 0 10px;
        position: relative;
        width: 100%;
    }
    
    .featured-label {
        margin-bottom: 15px;
        font-size: 32px;
        letter-spacing: 3px;
        margin-top: 0;
    }
    
    .featured-album-intro {
        max-width: 100%;
        font-size: 13px;
        padding: 0 10px;
        margin-bottom: 5px;
        margin-top: 0;
        line-height: 1.5;
    }
    
    .featured-album-wrapper {
        padding: 30px 15px;
        max-width: 100%;
        margin-bottom: 20px;
        margin-top: 0;
    }
    
    .featured-album-container {
        flex-direction: column;
        max-width: 100%;
        gap: 25px;
    }
    
    .featured-album-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        min-height: auto;
        max-height: none;
        order: 1;
    }
    
    .featured-album-background {
        height: 300px;
        min-height: 300px;
    }
    
    .featured-album-visual {
        min-height: 300px;
    }
    
    .featured-album-details {
        order: 2;
        min-height: auto;
        max-height: none;
        padding: 0;
        width: 100%;
    }
    
    .featured-album-info {
        text-align: center;
        margin-bottom: 20px;
        min-height: auto;
    }
    
    .featured-album-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 10px;
        min-height: auto;
        line-height: 1.2;
    }
    
    .featured-album-artist {
        font-size: 16px;
        text-align: center;
        margin-bottom: 6px;
        min-height: auto;
    }
    
    .featured-album-release {
        font-size: 12px;
        text-align: center;
        min-height: auto;
        margin-bottom: 4px;
    }
    
    .featured-album-streaming {
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
    
    .streaming-link {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .featured-album-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 15px;
        margin-bottom: 0;
    }
    
    .featured-album-description p {
        text-align: center;
        font-size: 13px;
        line-height: 1.6;
    }
    
    .featured-album-footer {
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .view-previous-months-button {
        padding: 10px 24px;
        font-size: 13px;
    }
}

.album-current-track {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.album-art-container {
    position: relative;
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.album-art-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 15px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.album-artist-name {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.album-title {
    font-size: 12px;
    opacity: 0.7;
}

.track-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.current-track-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.current-track-artist {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 20px 0;
}

.progress-container {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 13.3%;
    background: #007AFF;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.control-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
    color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.control-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.play-pause-btn {
    font-size: 24px;
    width: 44px;
    height: 44px;
}

.streaming-services {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    justify-content: center;
}

.streaming-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1.5px solid;
}

.spotify-btn {
    background: #1DB954;
    color: #ffffff;
    border-color: #1DB954;
}

.spotify-btn:hover {
    background: #1ed760;
    border-color: #1ed760;
}

.apple-music-btn {
    background: #FA243C;
    color: #ffffff;
    border-color: #FA243C;
}

.apple-music-btn:hover {
    background: #ff3d55;
    border-color: #ff3d55;
}

.youtube-music-btn {
    background: #FF0000;
    color: #ffffff;
    border-color: #FF0000;
}

.youtube-music-btn:hover {
    background: #ff3333;
    border-color: #ff3333;
}

.service-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.album-tracklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.track-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

.track-item.active {
    background: rgba(0, 122, 255, 0.1);
}

.track-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.track-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.track-name {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
}

.track-artist {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
}

.track-duration {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    margin-left: auto;
}

@media (max-width: 768px) {
    .monthly-album-player {
        padding: 20px;
        margin: 30px auto 0;
    }
    
    .album-current-track {
        flex-direction: column;
        gap: 20px;
    }
    
    .album-art-container {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .current-track-title {
        font-size: 24px;
        text-align: center;
    }
    
    .current-track-artist {
        text-align: center;
    }
    
    .streaming-services {
        flex-direction: column;
    }
    
    .streaming-btn {
        justify-content: center;
    }
}

/* About Me section title - increased spacing */
#about-me .section-title {
    margin-bottom: 21px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* White section text colors */
.section-white .section-title {
    color: #000000;
}

.section-white .section-text {
    color: rgba(0, 0, 0, 0.7);
}

/* Black section text colors */
.section-black .section-title {
    color: #ffffff;
}

.section-black .section-text {
    color: rgba(255, 255, 255, 0.7);
}

.section-text {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 2;
    margin-bottom: 20px;
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
}

/* Center text for sections that aren't About Me */
.content-section:not(#about-me) .section-text {
    text-align: center;
}

/* Split layout for alternating sections */
.content-section-inner.section-split-left,
.content-section-inner.section-split-right {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px !important;
    width: 100%;
    text-align: left;
}

.content-section-inner.section-split-left {
    flex-direction: row !important;
}

.content-section-inner.section-split-right {
    flex-direction: row-reverse !important;
}

.section-text-wrapper {
    flex: 1;
    max-width: 50%;
}

.section-title-wrapper {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-split-left .section-text,
.section-split-right .section-text {
    text-align: left;
    margin: 0;
}

.section-split-left .section-title,
.section-split-right .section-title {
    margin: 0;
    text-align: center;
}

@media (max-width: 968px) {
    .content-section-inner.section-split-left,
    .content-section-inner.section-split-right {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .section-text-wrapper {
        max-width: 100%;
        order: 2 !important;
    }
    
    .section-title-wrapper {
        max-width: 100%;
        order: 1 !important;
    }
    
    .content-section-inner.section-split-left .section-text,
    .content-section-inner.section-split-right .section-text {
        text-align: center;
        font-size: 16px;
    }
    
    .content-section-inner.section-split-left .section-title,
    .content-section-inner.section-split-right .section-title {
        text-align: center;
    }
    
    /* Larger text for Photography and Infrastructure on mobile */
    #photography .section-text,
    #infrastructure .section-text {
        font-size: 18px !important;
    }
}

/* Quote Section Styles */
.quote-section {
    min-height: auto;
    height: auto;
    background: #ffffff;
    padding: 20px 0 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.quote-section .content-section-inner {
    max-width: 100%;
    width: 100%;
    padding: 0 40px;
}

.quote-blockquote {
    margin: 0;
    padding: 0;
    border: none;
    text-align: center;
}

.quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: rgba(0, 0, 0, 0.70);
    letter-spacing: 2px;
    line-height: 1.4;
    margin: 0 0 15px 0;
    max-width: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.40);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: normal;
    display: block;
    margin-top: 10px;
}

/* About Me Section Styles */
#about-me {
    position: relative;
    overflow: visible;
}

.love-who-you-are-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
    margin: 0;
    margin-top: 10px;
    letter-spacing: 1px;
    font-style: italic;
}

.about-me-content-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-me-text-content {
    flex: 1;
    min-width: 0;
    max-width: 600px;
}

.about-me-image-container {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 450px;
}

#about-me .about-me-image-container .section-title {
    margin: 0;
    text-align: center;
}

.about-me-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.inspiration-button-wrapper {
    position: absolute !important;
    bottom: 50px !important;
    right: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 10px !important;
    opacity: 1;
    z-index: 10 !important;
    pointer-events: none;
}

.inspiration-button-wrapper * {
    pointer-events: auto;
}

.inspiration-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    margin-right: 8px;
}

.inspiration-text-line {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-align: right;
}

.inspiration-curved-arrow {
    width: 55px;
    height: 45px;
    position: absolute;
    bottom: -42px;
    right: 12px;
}

.inspiration-curved-arrow marker {
    opacity: 1 !important;
}

.inspiration-button {
    background: rgba(0, 0, 0, 0.05);
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    width: 36px;
    height: 36px;
    padding: 0;
    padding-top: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    line-height: 1;
    filter: grayscale(100%) brightness(0) contrast(1.2);
}

/* Disable animation on mobile to prevent image going off screen */
@media (max-width: 768px) {
    .about-me-image {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.section-white .about-me-image {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.section-black .about-me-image {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Contact Section Styles */
.contact-section .content-section-inner {
    max-width: 700px;
}

.contact-actions {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.business-enquiry-button {
    margin-top: 8px;
    margin-bottom: 8px;
}

.business-enquiry-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 42px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease, border-color 0.3s ease;
    border-radius: 2px;
    min-height: 48px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.business-enquiry-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.contact-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-socials .social-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease, border-color 0.3s ease;
    position: relative;
    padding: 0;
}

.contact-socials .social-link:hover {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    transform: translateX(4px);
}

.contact-socials .social-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.contact-socials .social-link:hover::after {
    width: 100%;
}

.contact-copyright {
    margin-top: 30px;
    padding-top: 15px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    margin: 0;
}


/* Tablet Styles - iPad and similar devices (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Hero Section Adjustments */
    .hero-content {
        padding: 0 40px;
    }

    .name-svg {
        width: 85%;
        max-width: 900px;
    }

    .name-fallback {
        font-size: 200px;
    }

    .rotating-title {
        margin-top: -35px;
    }

    .title-text {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .scroll-indicator {
        bottom: 50px;
    }

    .scroll-text {
        font-size: 13px;
    }

    /* Logo adjustments */
    .logo-initials {
        width: 100px;
        height: 75px;
    }

    .logo-panel {
        clip-path: path('M 0 0 L 100 0 L 100 50 Q 100 75 75 75 L 0 75 Z');
    }

    .logo-text {
        top: 22px;
        left: 25px;
        font-size: 40px;
    }

    /* Menu adjustments */
    .menu-button-wrapper {
        top: 28px;
        right: 28px;
    }

    .menu-button {
        width: 48px;
        height: 48px;
    }

    .menu-panel {
        grid-template-columns: 1fr;
    }

    .menu-left {
        display: none;
    }

    .menu-right {
        padding: 40px 30px;
    }

    .menu-list {
        margin-top: 30px;
    }

    .menu-list li {
        margin-bottom: 18px;
    }

    .menu-list a {
        font-size: 28px;
    }

    /* Content Section */
    .content-section {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
    }

    .contact-section {
        min-height: auto;
        height: auto;
        padding: 60px 0;
    }

    .content-section-inner {
        padding: 0 40px;
    }

    .quote-section {
        padding: 18px 0 20px 0;
    }

    .quote-section .content-section-inner {
        padding: 0 30px;
    }

    .quote-text {
        font-size: 15px;
        line-height: 1.7;
        white-space: normal;
        color: rgba(0, 0, 0, 0.4);
        letter-spacing: 1.8px;
    }

    .about-me-content-wrapper {
        flex-direction: column;
        gap: 25px;
        max-width: 100%;
    }

    .about-me-text-content {
        max-width: 100%;
        order: 2;
    }

    .about-me-image-container {
        margin: 0 auto;
        width: 100%;
        max-width: 280px;
        order: 1;
    }

    .about-me-image {
        max-width: 100%;
        width: 100%;
        max-width: 280px;
    }

    .quote-author {
        font-size: 11px;
        color: rgba(0, 0, 0, 0.4);
    }

    .contact-actions {
        margin-top: 15px;
        gap: 30px;
    }

    .business-enquiry-button {
        padding: 13px 40px;
        font-size: 12px;
    }

    .contact-socials {
        gap: 26px;
    }

    .contact-socials .social-link {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.4);
    }

    .section-title {
        font-size: 38px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .section-text {
        font-size: 17px;
        line-height: 1.9;
        margin-bottom: 18px;
    }

    /* Business Enquiries */
    .business-enquiries-container {
        padding: 60px 30px;
    }

    .business-enquiries-content {
        padding: 35px 40px;
        width: 85%;
    }

    .business-enquiries-title {
        font-size: 36px;
        letter-spacing: 3px;
        margin-bottom: 8px;
    }

    .business-enquiries-subtitle {
        font-size: 13px;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
    }

    .form-group label {
        font-size: 11px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 11px 16px;
    }

    .form-submit-button {
        padding: 12px 32px;
        font-size: 12px;
        letter-spacing: 1.8px;
    }

    /* Screen frame */
    .screen-frame {
        inset: 12px;
    }
}

/* Tablet Landscape (1024px to 1366px) - Larger tablets in landscape */
@media (min-width: 1025px) and (max-width: 1366px) {
    .name-svg {
        width: 88%;
        max-width: 1100px;
    }

    .menu-right {
        padding: 50px 60px;
    }

    .menu-list a {
        font-size: 30px;
    }

    .business-enquiries-content {
        padding: 40px 45px;
    }

    .content-section {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
    }

    .contact-section {
        min-height: auto;
        height: auto;
        padding: 60px 0;
    }

    .content-section-inner {
        padding: 0 50px;
    }
}

/* Tablet Portrait specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .hero-content {
        padding: 0 30px;
    }

    .name-svg {
        width: 90%;
    }

    .name-fallback {
        font-size: 180px;
    }

    .menu-right {
        padding: 35px 25px;
    }

    .content-section {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
    }

    .content-section-inner {
        padding: 0 30px;
    }
}

/* Tablet Landscape specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .name-svg {
        width: 80%;
        max-width: 950px;
    }

    .name-fallback {
        font-size: 220px;
    }

    .rotating-title {
        margin-top: -30px;
    }
}

/* Additional tablet touch optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Better touch targets for tablets */
    .menu-button,
    .menu-close {
        min-width: 48px;
        min-height: 48px;
    }

    .menu-list a {
        padding: 8px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .business-button {
        min-height: 48px;
        padding: 14px 28px;
    }

    .form-submit-button {
        min-height: 48px;
    }

    /* Improve spacing for touch interactions */
    .menu-list li {
        margin-bottom: 20px;
    }

    .submenu li {
        margin-bottom: 12px;
    }

    .submenu a {
        font-size: 18px;
        padding: 6px 0;
        min-height: 40px;
    }

    /* Content section adjustments */
    .content-section-inner {
        max-width: 800px;
    }

    /* Better readability on tablets */
    .business-enquiries-form {
        gap: 22px;
    }

    .form-group {
        gap: 8px;
    }
}
