:root {
    /* header height used to offset fixed header from page content */
    --header-height: 80px;
    --color-background: #0c0c0c;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-accent-orange: #ffa500;
    --color-accent-blue: #00b4ff;
    --font-main: 'Neue Montreal', sans-serif;
    
    /* Font sizes */
    --font-size-nav: 0.75rem;
    --font-size-nav-brand: 1.25rem;
    --font-size-body: 15px;
    --letter-spacing-nav: 0.1em;
}

/* Neue Montreal Font Faces - with optimization properties */
@font-face {
    font-family: 'Neue Montreal';
    src: url('Fonts/NeueMontreal-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('Fonts/NeueMontreal-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('Fonts/NeueMontreal-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('Fonts/NeueMontreal-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('Fonts/NeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('Fonts/NeueMontreal-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('Fonts/NeueMontreal-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('Fonts/NeueMontreal-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--color-background);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
}

/* enforce the site font and base sizes globally */
html {
    font-size: 16px; /* Set base font size */
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html, body, header, nav, .primary-nav, .desktop-nav, .brand-text {
    font-family: var(--font-main) !important;
    text-size-adjust: none;
    -webkit-text-size-adjust: none; /* Prevent iOS font scaling */
}

.desktop-nav,
.desktop-nav a,
.nav-contact,
.brand-text,
.site-header {
    font-size-adjust: 100% !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    height: var(--header-height);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-gap: 2rem;
    align-items: center;
    height: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    line-height: 1;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.brand-text {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
    z-index: 1400;
    position: relative;
}

.brand-text:hover {
    color: var(--color-text);
}

/* ensure menu toggle (burger) is visible on all sizes as requested */
.menu-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.5rem;
    height: 1.125rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    left: 1.5rem;
    z-index: 1600;
    gap: 0.25rem;
}

/* header inner wrapper: keep full-bleed; don't center with max-width to avoid shifting */

/* make header visually pop */
header {
    background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(20,20,20,0.95));
    box-shadow: 0 6px 20px rgba(0,0,0,0.6), inset 0 -1px 0 rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);
}

/* Consistent hover animations for all navigation elements */

/* primary-nav overlay (hidden by default, shown when .open). Kept as an overlay so burger can open it on any viewport */
.primary-nav {
    position: fixed;
    left: 0;
    top: var(--header-height);
    width: 100% !important;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-background);
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    z-index: 1500;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.primary-nav.open {
    transform: translateX(0);
}

/* Close button in nav menu */
.nav-close {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    z-index: 1600;
    margin-bottom: 0;
}

.close-icon {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--color-text);
    transition: transform 0.3s ease;
    position: absolute;
}

.close-icon:nth-child(1) {
    transform: rotate(45deg);
}

.close-icon:nth-child(2) {
    transform: rotate(-45deg);
}

.desktop-nav {
    display: none !important;  /* Always hidden, links appear in primary-nav when expanded */
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-start;
    min-width: fit-content;
}

/* Hamburger menu styles */
.menu-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    height: 1.125rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    left: 0;
    z-index: 1600;
    grid-column: 1;
    gap: 0.25rem;
}

.hamburger {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    margin: 0;
    background-color: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Toggle states */
.toggle:checked + .menu-button .hamburger:nth-child(2) {
    opacity: 0;
}

.toggle:checked + .menu-button .hamburger:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.toggle:checked + .menu-button .hamburger:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

.brand {
    position: relative;
    left: auto;
    transform: none;
    text-align: center;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.brand-text:hover {
    color: var(--color-text);
}

.nav-contact {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.nav-contact::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent-orange);
    transition: width 0.3s ease;
}

.nav-contact:hover {
    color: var(--color-accent-orange);
    transform: scale(1.05) translateY(-2px);
}

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

.nav-right {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-end;
    min-width: fit-content;
}

.desktop-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    padding: 4px 0;
    font-size: 0.8rem;
    white-space: nowrap;
    text-transform: uppercase;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent-orange);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--color-accent-orange);
    transform: scale(1.05) translateY(-2px);
}

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

/* Removed conflicting nav a:hover rule to maintain consistent animations */

.full-height {
    min-height: 100vh;
    padding: 0 2rem;
}

/* Ensure overlay and nav elements use the same site font to avoid swapping on resize */
.primary-nav,
.primary-nav .nav-links,
.primary-nav .nav-item,
.primary-nav .nav-header,
.nav-close {
    font-family: var(--font-main);
}

main {
    flex: 1;
    margin-top: 5rem;
    width: 100%;
    box-sizing: border-box;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: var(--color-background);
    min-height: calc(100vh - 4rem);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInDown 5s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.05em;
}

/* Mygear page hero - match services page styling exactly */
.hero:has(+ .gear-grid) {
    padding: 0;
    background-color: var(--color-background);
    text-align: center;
    min-height: auto;
    overflow: visible;
}

.hero:has(+ .gear-grid) .hero-background {
    background-color: rgba(255, 255, 255, 0.03);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6rem 2rem 4rem 2rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    animation: fadeInDown 0.8s ease-out forwards;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero:has(+ .gear-grid) .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
}

.hero:has(+ .gear-grid) .hero-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero:has(+ .gear-grid) .hero-title {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 1.5rem 0;
    color: var(--color-text);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero:has(+ .gear-grid) .hero-header p {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    letter-spacing: 0.05em;
}

.hero:has(+ .gear-grid) .hero-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 165, 0, 0.6), transparent);
    margin: 1.5rem auto 0;
    max-width: 400px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    pointer-events: none;
}

.hero h1 { /* legacy selector kept lightweight */
    margin: 0;
    animation: fadeInDown 0.6s ease-out 0.1s both;
}

.hero p {
    font-size: 1.2em;
    margin: 10px 0;
    animation: fadeInDown 0.6s ease-out 0.3s both;
}

/* Portfolio Toggle */


.tile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background-color: var(--color-background);
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    animation: fadeInDown 0.8s ease-out forwards;
}

.tile-section {
    position: relative;
    aspect-ratio: 16/5;
    overflow: hidden;
    background-color: var(--color-background);
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.tile-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--color-text);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tile-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 2rem;
}

.tile-title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    animation: fadeInDown 0.6s ease-out 0.15s both;
    opacity: 0.9;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, color 0.3s ease, border-bottom-color 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    display: block;
    white-space: nowrap;
}

.tile-title::after {
    display: none;
}

.tile-subtitle {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 1rem;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 0.6s ease 0.1s;
}

.tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background-color 0.6s ease;
    z-index: 1;
}

/* Tile backgrounds - use 1600x700px images */
.video-work {
    background: url('images/navigation/index-video.png') center 35%/100% auto no-repeat;
}

.presets {
    background: url('images/navigation/index-services.png') center 35%/100% auto no-repeat;
}

.about {
    background: url('images/navigation/index-about.png') center 35%/100% auto no-repeat;
}

/* Hover effects */
.tile-link:hover {
    transform: scale(1.02);
}

.tile-link:hover .tile-overlay {
    background: rgba(0, 0, 0, 0);
}

.tile-link:hover .tile-title,
.tile-link:hover .tile-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.tile-link:hover .tile-title {
    color: var(--color-accent-orange);
    border-bottom-color: var(--color-accent-orange);
}

.tile-link.active .tile-title,
.tile-link.active .tile-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.tile-link.active .tile-title {
    color: var(--color-accent-orange);
    border-bottom-color: var(--color-accent-orange);
}

/* Portfolio Tile Grid */
.portfolio-tile-grid {
    display: grid;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.portfolio-tile-grid.videography-grid {
    grid-template-columns: 1fr;
    gap: 1px;
    background-color: var(--color-background);
    padding: 1px;
    margin-top: -1px;
}

.portfolio-tile-grid.hidden {
    display: none;
}

.portfolio-tile-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-background);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-tile-grid.videography-grid .portfolio-tile-section {
    aspect-ratio: 16/5;
    background-size: 100% auto;
}

.portfolio-tile-link {
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--color-text);
    position: relative;
    overflow: hidden;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.portfolio-tile-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 1.5rem;
    flex: 1;
}

.portfolio-tile-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin: 0;
    opacity: 0.9;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, color 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    line-height: 1.4;
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

.portfolio-tile-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 0;
    background: var(--color-accent-orange);
    transition: width 0.3s ease;
}

.portfolio-tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background-color 0.6s ease;
    z-index: 1;
}

/* Portfolio tile backgrounds */
.short-form {
    background: url('images/navigation/tesla.jpeg') center/cover no-repeat;
}

.long-form {
    background: url('images/navigation/cybertruck.webp') center/cover no-repeat;
}

.event-video {
    background: url('images/navigation/drone.jpg') center/cover no-repeat;
}

.portrait {
    background: url('images/navigation/grad portrait.JPG') center/cover no-repeat;
}

.commercial {
    background: url('images/navigation/sauna.JPG') center/cover no-repeat;
}

.event-photo {
    background: url('images/navigation/event photo.jpg') center/cover no-repeat;
}

/* Portfolio tile hover effects */
.portfolio-tile-link:hover .portfolio-tile-overlay {
    background: rgba(0, 0, 0, 0);
}

.portfolio-tile-link:hover .portfolio-tile-title {
    opacity: 1;
    transform: translateY(0);
    color: var(--color-accent-orange);
}

.portfolio-tile-link:hover .portfolio-tile-title::after {
    width: 100%;
}

.portfolio-tile-link.active .portfolio-tile-title {
    opacity: 1;
    transform: translateY(0);
    color: var(--color-accent-orange);
}

.portfolio-tile-link.active .portfolio-tile-title::after {
    width: 100%;
}

/* Content Break Sections */
.content-break {
    position: relative;
    aspect-ratio: 16/5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    text-align: center;
    animation: fadeInDown 0.8s ease-out forwards;
    width: 100%;
    box-sizing: border-box;
}

.content-break.dark {
    background-color: var(--color-background);
    color: var(--color-text);
}

.content-break.gear {
    background-color: var(--color-background);
    background-image: url('images/navigation/index-gear.png');
    background-size: 120%;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-text);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.content-break.gear::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
    transition: background-color 0.6s ease;
    pointer-events: none;
}

.content-break.gear:hover::before {
    background: rgba(0, 0, 0, 0);
}

.content-break.gear .content-break-inner {
    position: relative;
    z-index: 2;
}

.content-break.gear .break-title {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 8px;
    display: inline-block;
}

.content-break.gear:hover .break-title {
    color: var(--color-accent-orange);
    border-bottom-color: var(--color-accent-orange);
}

.content-break.work {
    background-color: #fff;
    color: #000;
}

.content-break-inner {
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
}



.break-prefix {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: rgba(0, 0, 0, 0.6);
}

.dark .break-prefix {
    color: rgba(255, 255, 255, 0.6);
}

.break-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 0.5rem 0;
    text-transform: uppercase;
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

.break-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0 2rem;
    opacity: 0.8;
    animation: fadeInDown 0.6s ease-out 0.35s both;
}

.minimal-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid currentColor;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInDown 0.6s ease-out 0.4s both;
}

.minimal-button::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 0;
    background: var(--color-accent-orange);
    transition: width 0.3s ease;
}

.minimal-button:hover {
    background-color: #000;
    color: #ffa500;
    transform: translateY(-2px);
}

.minimal-button:hover::after {
    width: 100%;
}

.dark .minimal-button:hover {
    background-color: #fff;
    color: #ffa500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tile-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        margin-top: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .tile-section {
        aspect-ratio: 16/9;
        min-height: 180px;
        border-bottom: 1px solid var(--color-background);
        width: 100%;
        box-sizing: border-box;
    }
    
    .tile-content {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .tile-title {
        font-size: 1rem;
        text-align: center;
    }
    
    .portfolio-tile-grid {
        gap: 0;
        padding: 0;
        margin-top: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .portfolio-tile-section {
        aspect-ratio: 4/3;
        min-height: 200px;
        border-bottom: 1px solid var(--color-background);
        width: 100%;
    }
    
    .portfolio-tile-title {
        font-size: 1rem;
        text-align: center;
    }
    
    .portfolio-tile-content {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .portfolio-tile-grid.videography-grid .portfolio-tile-section {
        aspect-ratio: 16/9;
        border-bottom: none;
    }

    .content-break {
        aspect-ratio: 16/9;
        min-height: 180px;
        border-bottom: 1px solid var(--color-background);
        width: 100%;
        box-sizing: border-box;
    }
    
    .break-title {
        font-size: 1.5rem;
    }

    /* Hero video mobile optimization */
    .hero {
        min-height: 70vh;
        padding: 0;
    }

    .hero video {
        object-fit: cover;
        background-color: #000;
    }

    /* MyGear hero image - show right side on mobile, shifted slightly left */
    .hero:has(+ .gear-grid) .hero-image {
        object-position: 65% center;
    }

    .hero-content {
        padding: 0 1rem;
    }

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

    /* Mobile My Gear background fix */
    .content-break.gear {
        background-attachment: scroll;
        background-size: cover;
        min-height: 250px;
    }
}


.section-image:hover {
    opacity: 0.8;
}

.section-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-prefix {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
    text-transform: uppercase;
}

.text-section {
    text-align: center;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: -0.02em;
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin: 0.5rem 0 0;
    animation: fadeInDown 0.6s ease-out 0.3s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

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

.content-section h2 {
    font-size: 2.5em;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
}

.content-section p {
    font-size: 1.1em;
    max-width: 600px;
    margin: 20px auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn:hover::before {
    width: 100%;
}

footer {
    background-color: #000;
    padding: 3rem 2rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    justify-items: center;
    box-sizing: border-box;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    max-width: 100%;
    min-width: 0;
}

.footer-section:last-child {
    margin-top: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: -0.3rem 0 0 0;
}

.footer-logo-link {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 240px;
    width: auto;
    max-width: 240px;
    transition: all 0.3s ease;
}

.footer-logo-link:hover {
    color: var(--color-accent-orange);
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.15);
}

.footer-title {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent-orange);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent-orange);
    transform: scale(1.05) translateY(-2px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a.active {
    color: var(--color-accent-orange);
    transform: scale(1.05) translateY(-2px);
}

.footer-links a.active::after {
    width: 100%;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--color-accent-orange);
    transform: scale(1.15) translateY(-3px);
}

.social-link svg {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    box-sizing: border-box;
}

.footer-bottom p {
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (min-width: 1201px) {
    /* Always show mobile menu with hamburger - no desktop nav */
    .desktop-nav {
        display: none !important;
    }
    .primary-nav {
        position: fixed;
        left: 0;
        top: var(--header-height);
        width: 100% !important;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-background);
        transform: translateX(-100%);
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        padding: 2rem 1.5rem;
        z-index: 1500;
        box-sizing: border-box;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1200px) {
    /* Switch to mobile menu to prevent overlap */
    .primary-nav { display: flex; }
    .desktop-nav { display: none; }
    
    .header-inner {
        padding: 0 1rem;
        grid-gap: 1rem;
    }
    
    .nav-right {
        justify-content: flex-end;
        position: relative;
        right: auto;
    }
}

@media (max-width: 900px) {
}

@media (max-width: 600px) {
    .hero-title { font-size: 1.6rem; }
    .content-section h2 { font-size: 1.6rem; }
}

/* Hide contact button when text enlargement or zoom causes layout issues */
/* This typically happens when viewport width becomes very constrained due to text enlargement */
@media (max-width: 520px) {
    .nav-right {
        display: none !important;
    }
    
    .header-inner {
        grid-template-columns: auto 1fr auto;
        padding: 0 1rem;
        grid-gap: 1rem;
    }
    
    .brand {
        text-align: center;
        justify-self: center;
    }
}

/* Mobile / flyout menu styles */
@media (max-width: 900px) {
    .primary-nav {
        position: fixed;
        left: 0;
        top: var(--header-height);
        width: 100% !important;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-background);
        transform: translateX(-100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-sizing: border-box;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1500;
    }

    .primary-nav.open {
        transform: translateX(0);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
        width: 100%;
        align-items: flex-start;
    }

    .nav-item {
        font-size: 1rem;
        color: var(--color-text);
        text-decoration: none;
        font-weight: 400;
        transition: all 0.3s ease;
        padding: 0.75rem 1.5rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        white-space: normal;
        text-align: left;
        position: relative;
        display: flex;
        min-height: 44px;
        align-items: center;
        margin: 0;
        width: 100%;
    }

    .nav-item::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -4px;
        left: 0;
        background-color: var(--color-accent-orange);
        transition: width 0.3s ease;
    }

    .nav-item:hover {
        color: var(--color-accent-orange);
        transform: none;
    }

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

    .nav-item.active {
        color: var(--color-accent-orange);
    }

    .nav-item.active::after {
        width: 100%;
    }
}

.cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    text-decoration: none;
    width: 24px;
    height: 24px;
}

.cart-icon svg { 
    display: block; 
    width: 18px; 
    height: 18px;
    stroke-width: 1.5px;
}

.cart-icon:hover { color: var(--color-text-muted); }

/* On larger screens use a side-panel for the menu so it doesn't cover the whole viewport */
@media (min-width: 900px) {
    .primary-nav {
        position: fixed;
        left: 0;
        top: var(--header-height);
        width: 360px !important;
        height: calc(100vh - var(--header-height));
        border-right: 1px solid rgba(255,255,255,0.06);
        background: linear-gradient(180deg, rgba(11,11,11,0.98), rgba(15,15,15,0.98));
        transform: translateX(-100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-sizing: border-box;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1500;
    }

    .primary-nav.open { transform: translateX(0); }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
        width: 100%;
        align-items: flex-start;
    }

    .nav-item {
        font-size: 1rem;
        color: var(--color-text);
        text-decoration: none;
        font-weight: 400;
        transition: all 0.3s ease;
        padding: 0.75rem 1.5rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        white-space: normal;
        text-align: left;
        position: relative;
        display: flex;
        min-height: 44px;
        align-items: center;
        margin: 0;
        width: 100%;
    }

    .nav-item::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -4px;
        left: 0;
        background-color: var(--color-accent-orange);
        transition: width 0.3s ease;
    }

    .nav-item:hover {
        color: var(--color-accent-orange);
        transform: none;
    }

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

    .nav-item.active {
        color: var(--color-accent-orange);
    }

    .nav-item.active::after {
        width: 100%;
    }
}

/* keep the menu toggle visible on desktop too per user request */

.content-break-inner {
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
}

.break-prefix {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.break-title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin: 0.5rem 0 1.5rem;
    text-transform: uppercase;
}

.break-text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 1rem 0 2rem;
    opacity: 0.8;
}

.minimal-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid currentColor;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.minimal-button:hover {
    background-color: #000000;
    color: #ffffff;
}

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

/* Portfolio Page Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

/* Portfolio Items Grid */
.portfolio-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.portfolio-item-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(0, 180, 255, 0.1));
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item-placeholder:hover {
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
    transform: translateY(-4px);
}

.placeholder-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* Responsive portfolio items grid */
@media (max-width: 1200px) {
    .portfolio-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Services Page Styles */
.services-hero {
    padding: 0;
    background-color: var(--color-background);
    text-align: center;
}

.services-hero-background {
    background-color: rgba(255, 255, 255, 0.03);
    background-image: url('images/navigation/services-herotile.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6rem 2rem 4rem 2rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    animation: fadeInDown 0.8s ease-out forwards;
    box-sizing: border-box;
}

.services-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 100%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    pointer-events: none;
    z-index: 1;
}

.services-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.services-header h2 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 1.5rem 0;
    color: var(--color-text);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.services-subheader {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.05em;
}

.hero-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 165, 0, 0.6), transparent);
    margin: 1.5rem auto 0;
    max-width: 400px;
}

.privacy-hero {
    padding: 0;
    background-color: var(--color-background);
    text-align: center;
}

.privacy-hero-background {
    background-color: rgba(255, 255, 255, 0.03);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6rem 2rem 4rem 2rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    animation: fadeInDown 0.8s ease-out forwards;
    box-sizing: border-box;
}

.privacy-header {
    margin-bottom: 2rem;
}

.privacy-title {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 0;
    color: var(--color-text);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.services-toggle-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-toggle {
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: auto;
    text-align: center;
}

.service-toggle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 0;
    background: var(--color-accent-orange);
    transition: width 0.3s ease;
}

.service-toggle:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    color: var(--color-accent-orange);
}

.service-toggle:hover::after {
    width: 100%;
}

.service-toggle.active {
    background-color: var(--color-text);
    color: var(--color-background);
}

.services-content {
    padding: 1.5rem 2rem;
    background-color: var(--color-background);
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-content.active {
    display: block;
    animation: fadeInContent 0.5s ease-out forwards;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:nth-child(odd) {
    background-color: transparent;
}

.service-item:nth-child(even) {
    background-color: transparent;
    padding: 3rem 0;
    margin: 0;
}

.service-item.left {
    grid-template-columns: 1fr 1fr;
}

.service-item.right {
    grid-template-columns: 1fr 1fr;
}

.service-item.right .service-image {
    order: 2;
    margin-left: 0;
    margin-right: 0;
}

.service-item.right .service-info {
    order: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Intermediate layout for partially expanded view (between desktop and mobile) */
@media (min-width: 900px) and (max-width: 1299px) {
    .service-item {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        grid-template-columns: 1fr;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-item:nth-child(even) {
        padding: 2rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
    
    .service-item.left,
    .service-item.right {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .service-item .service-info {
        display: contents;
    }
    
    .service-item .service-image {
        order: 2;
        aspect-ratio: 16/12;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-info h3 {
        font-size: 1.25rem;
        margin: 0;
        padding: 0;
        order: 1;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .service-info p {
        order: 3;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .service-info .quote-button {
        order: 4;
        width: 100%;
        max-width: 90%;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-info .divider {
        order: 5;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-info .deliverables {
        order: 6;
        width: 100%;
        max-width: 90%;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-info .session-types {
        order: 6;
        width: 100%;
        max-width: 90%;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-inquiry-container {
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Desktop layout - shift image down */
@media (min-width: 1300px) {
    .service-item {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        flex-direction: unset;
        transition: none !important;
    }
    
    .service-item .service-info {
        display: flex !important;
        transition: none !important;
    }
    
    .service-item .service-image {
        margin-top: 2rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: unset !important;
    }
}

/* Mobile layout for services - center tiles with title above image */
@media (max-width: 900px) {
    .service-item {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        grid-template-columns: 1fr;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-item:nth-child(even) {
        padding: 2rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
    
    .service-item.left {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 90% !important;
    }
    
    .service-item.right {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 90% !important;
    }
    
    .service-item .service-info {
        display: contents;
    }
    
    .service-item .service-image {
        order: 2;
        aspect-ratio: 16/12;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-item.right .service-image {
        order: 2 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .service-item.right .service-info {
        order: unset !important;
    }
    
    .service-info h3 {
        font-size: 1.25rem;
        margin: 0;
        padding: 0;
        order: 1;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
    }
    
    .service-info p {
        order: 3;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .service-info .quote-button {
        order: 4;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-info .divider {
        order: 5;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-info .deliverables {
        order: 6;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-info .session-types {
        order: 6;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/12;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    border: none;
    border-radius: 12px;
}

.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-photo {
    transform: scale(1.02);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
}

.service-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
    padding-top: 0;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.service-pricing {
    font-size: 1.1rem;
    margin-top: 0.5rem !important;
    color: var(--color-text) !important;
}



.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem !important;
}

.service-pricing {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-accent-orange);
    margin: 0.75rem 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.deliverables {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1.5rem;
    border-top: none;
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.deliverables:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.2);
    transform: translateY(-2px);
}

.deliverables h4 {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.75rem 0;
    color: var(--color-accent-orange);
}

.session-types h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.75rem 0;
    color: var(--color-text);
}

.deliverables ul,
.session-type ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.deliverables li,
.session-type li {
    margin: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.deliverables li::before,
.session-type li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent-orange);
    font-weight: bold;
}

.session-types {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 0;
    border-top: none;
}

.session-type {
    padding: 1rem;
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.session-type:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.2);
    transform: translateY(-2px);
}

.session-type h4 {
    color: var(--color-accent-orange);
    margin-bottom: 0.75rem;
}

.session-type ul {
    font-size: 0.8rem;
    line-height: 1.7;
}

.session-type li {
    padding-left: 1rem;
    font-size: 0.8rem;
}



/* Responsive Services Layout */
@media (max-width: 900px) {
    .service-item {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
        grid-template-columns: 1fr;
    }
    
    .service-item:nth-child(even) {
        padding: 2rem 0;
        margin: 0;
    }
    
    .service-item.left,
    .service-item.right {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .service-item .service-info {
        display: contents;
    }
    
    .service-item .service-image {
        order: 2;
        aspect-ratio: 16/12;
    }
    
    .service-info h3 {
        font-size: 1.25rem;
        margin: 0;
        padding: 0;
        order: 1;
    }
    
    .service-info p {
        order: 3;
    }
    
    .service-info .quote-button {
        order: 4;
        width: 100%;
    }
    
    .service-info .divider {
        order: 5;
        width: 100%;
    }
    
    .service-info .deliverables {
        order: 6;
        width: 100%;
        box-sizing: border-box;
    }
    
    .service-info .session-types {
        order: 6;
        width: 100%;
        box-sizing: border-box;
    }
    
    .service-info .session-types {
        order: 6;
    }
    
    .services-list {
        gap: 2rem;
    }
    
    .session-types {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .services-toggle-container {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 1.5rem;
    }

    .service-toggle {
        padding: 1rem 3rem;
        font-size: 0.75rem;
    }
}

/* Inquiry Section */
.inquiry-section {
    width: 100%;
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 6rem 2rem;
}

.services-inquiry-section {
    width: 100%;
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 6rem 2rem;
    animation: fadeInDown 0.8s ease-out forwards;
}

.services-inquiry-container {
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    padding: 0 2rem;
}

.services-inquiry-container h2 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 0.5rem 0;
    text-transform: uppercase;
    color: #000;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.services-inquiry-container p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    margin: 1rem 0 2rem;
    line-height: 1.6;
}

/* Contact Hero Section */
.contact-hero {
    padding: 6rem 2rem 4rem 2rem;
    background-color: #fff;
    color: #000;
    text-align: center;
    animation: fadeInDown 0.8s ease-out forwards;
}

.contact-hero h1 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    color: #000;
}

.contact-hero p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    margin: 0.75rem 0;
    line-height: 1.6;
}

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

.inquiry-container {
    max-width: 800px;
    margin: 0 auto;
}

.inquiry-container h2 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 0.5rem 0;
    text-transform: uppercase;
    color: #000;
}

.inquiry-container p {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.8);
    margin: 1rem 0 2rem 0;
    line-height: 1.6;
}

.service-starting-price {
    font-size: 0.95rem;
    color: #ffa500;
    font-weight: 700;
    margin: 0.5rem 0 1rem 0;
    letter-spacing: 0.05em;
}

.inquiry-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid currentColor;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
}

.inquiry-button::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 0;
    background: var(--color-accent-orange);
    transition: width 0.3s ease;
}

.inquiry-button:hover {
    background-color: #000;
    color: #ffa500;
    transform: translateY(-2px);
}

.inquiry-button:hover::after {
    width: 100%;
}

.inquiry-button.active {
    background-color: #000;
    color: #ffa500;
    transform: translateY(-2px);
}

.inquiry-button.active::after {
    width: 100%;
}

.quote-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border: 1px solid #ffa500;
    color: #ffa500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    min-height: 40px;
    width: 100%;
    box-sizing: border-box;
}

.quote-button:hover {
    background-color: #ffa500;
    color: #000;
    transform: translateY(-2px);
}

.quote-button.active {
    background-color: #ffa500;
    color: #000;
    transform: translateY(-2px);
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 165, 0, 0.3), transparent);
    margin: 0.5rem 0;
}

/* About Page Styles */
.about-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem 2rem;
    background-color: var(--color-background);
    animation: fadeInDown 0.8s ease-out forwards;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    width: 100%;
    align-items: stretch;
    height: 100%;
}

.about-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
}

.about-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
    justify-content: center;
}

.about-intro {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin: 0;
}

.about-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin: 0.5rem 0 0 0;
    font-weight: 400;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    opacity: 0.9;
    margin: 0;
}

.about-cta {
    display: inline-block;
    width: fit-content;
    padding: 0.75rem 2rem;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
}

.about-cta::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 0;
    background: var(--color-accent-orange);
    transition: width 0.3s ease;
}

.about-cta:hover {
    background-color: var(--color-text);
    color: var(--color-accent-orange);
    transform: translateY(-2px);
}

.about-cta:hover::after {
    width: 100%;
}

/* Fade-in animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out 0.1s both;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out 0.2s both;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease-out 0.1s both;
}

/* Scroll-triggered animations */
.animate-on-scroll {
    animation: fadeInDown 0.6s ease-out forwards !important;
}

/* Staggered animations for text elements */
.about-content-section .about-title {
    animation: fadeInDown 0.5s ease-out 0.3s both;
}

.about-content-section .about-subtitle {
    animation: fadeInDown 0.5s ease-out 0.45s both;
}

.about-content-section .about-text {
    animation: fadeInDown 0.5s ease-out 0.6s both;
}

.about-content-section .about-cta {
    animation: fadeInDown 0.5s ease-out 0.75s both;
}

/* Responsive About Layout */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        height: auto;
    }
    
    .about-hero {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-image-section {
        min-height: auto;
        aspect-ratio: 3/4;
        margin-bottom: 1rem;
    }
}

/* Contact Page Styles */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select {
        font-size: 1rem;
        min-height: 44px;
        height: 44px;
        padding: 0.75rem;
    }
    
    .form-group select {
        height: 44px;
        padding: 0.75rem;
    }
    
    .form-group textarea {
        font-size: 1rem;
        min-height: 120px;
        padding: 0.75rem;
    }
    
    /* Mobile date input styling */
    input[type="date"] {
        padding: 0.75rem !important;
        height: 44px !important;
        line-height: 44px !important;
        font-size: 1rem !important;
    }
    
    input[type="date"]::-webkit-datetime-edit {
        padding: 0;
        line-height: 44px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Input fields and select - standard height */
.form-group input,
.form-group select {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    height: 44px;
    display: block;
}

/* Select dropdown */
.form-group select {
    height: 44px;
    padding: 0.75rem;
    font-size: 0.95rem;
}

/* Textarea - larger field */
.form-group textarea {
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    resize: vertical;
    min-height: 120px;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.form-group select option {
    background-color: #1a1a1a;
    color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

/* Date input calendar icon styling */
input[type="date"] {
    text-align: left !important;
    padding: 0.75rem !important;
    line-height: 44px !important;
    height: 44px !important;
    color: var(--color-text) !important;
    font-size: 0.95rem !important;
}

input[type="date"]::before {
    color: white;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.1);
    cursor: pointer;
    margin-right: 0.5rem;
}

/* Ensure date text is visible and left-aligned */
input[type="date"]::-webkit-datetime-edit {
    padding: 0;
    text-align: left;
    color: var(--color-text);
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
    text-align: left;
}

/* Placeholder styling for date input */
input[type="date"]:not(:valid) {
    color: rgba(255, 255, 255, 0.4);
}

input[type="date"]:valid {
    color: var(--color-text);
}

.submit-button {
    grid-column: 1 / -1;
    display: inline-block;
    padding: 0.65rem 1.5rem;
    border: 1px solid #ffa500;
    color: #ffa500;
    background: transparent;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    position: relative;
    margin-top: -0.5rem;
}

.submit-button:hover {
    background-color: #ffa500;
    color: #000;
    transform: translateY(-2px);
}

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

/* Google reCaptcha-style verification checkbox */
.recaptcha-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #d3d3d3;
    border-radius: 2px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    margin-top: 1rem;
}

.recaptcha-box:hover {
    border-color: #b3b3b3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recaptcha-box input[type="checkbox"] {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    accent-color: #4285f4;
    flex-shrink: 0;
    border: 2px solid #d3d3d3;
    border-radius: 2px;
}

.recaptcha-box input[type="checkbox"]:hover {
    border-color: #b3b3b3;
}

.recaptcha-box input[type="checkbox"]:checked {
    background-color: #4285f4;
    border-color: #4285f4;
}

.recaptcha-box label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    cursor: pointer;
    flex: 1;
    color: #555555;
}

.recaptcha-box label span {
    color: #555555;
    font-weight: 500;
}

.recaptcha-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    font-size: 0.7rem;
    color: #777777;
}

.recaptcha-badge-text {
    text-align: right;
    line-height: 1.2;
}

.recaptcha-badge-text a {
    color: #4285f4;
    text-decoration: none;
}

.recaptcha-badge-text a:hover {
    text-decoration: underline;
}

/* Custom Checkbox Styling */
#certify {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border: 2px solid #ffffff;
    border-radius: 2px;
    background-color: #000000;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#certify:hover {
    border-color: #ffa500;
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
}

#certify:checked {
    background-color: #000000;
    border-color: #ffffff;
}

#certify:checked::after {
    content: '✓';
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

/* Certification checkbox form group - bring closer to textarea */
.form-group:has(#certify) {
    margin-top: -1rem;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    footer {
        padding: 2rem 0;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem 0;
        max-width: 100%;
    }
    
    .footer-section {
        width: 100%;
        padding: 0 1rem;
    }
    
    .footer-title {
        font-size: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }

    .services-inquiry-section {
        padding: 3rem 0;
    }

    .services-inquiry-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
        box-sizing: border-box;
        width: 100%;
    }

    .services-inquiry-container h2 {
        font-size: 1.1rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .nav-item {
        white-space: normal;
        width: auto;
        margin: 0;
        padding: 0.75rem 1.5rem;
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container,
.lightbox-video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    animation: zoomIn 0.3s ease;
}

.lightbox-video {
    max-width: 90vw;
    max-height: 85vh;
    background: #000;
    border-radius: 4px;
}

/* Lightbox Navigation */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 3;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--color-accent-orange);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    border-radius: 4px;
}

.lightbox-nav:hover {
    background: rgba(255, 165, 0, 0.6);
    color: white;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Lightbox Counter */
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    z-index: 3;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Project Modal Styles */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.project-modal.active {
    display: flex;
}

.project-modal-content {
    position: relative;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
    animation: zoomIn 0.3s ease;
}

.project-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.project-modal-close {
    position: fixed;
    top: 9.3rem;
    right: calc(50vw - 480px);
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.project-modal.active .project-modal-close {
    opacity: 1;
    pointer-events: auto;
}

.project-modal-close:hover {
    color: var(--color-accent-orange);
    transform: scale(1.1);
}

.project-modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    transition: all 0.3s ease;
    z-index: 1002;
}

.project-modal-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.project-modal-prev {
    left: 2rem;
}

.project-modal-next {
    right: 2rem;
}

.project-video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-video {
    width: 100%;
    height: 100%;
}

.project-info {
    padding: 1.5rem 2rem;
}

.project-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Neue Montreal', sans-serif;
}

.project-description {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    font-family: 'Neue Montreal', sans-serif;
}

/* Responsive Project Modal */
@media (max-width: 900px) {
    .project-modal {
        padding: 1rem;
    }

    .project-modal-content {
        max-height: 95vh;
    }

    .project-video-container {
        aspect-ratio: 16 / 9;
    }

    .project-title {
        font-size: 1.5rem;
    }

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

@media (max-width: 600px) {
    .project-modal {
        padding: 0;
    }

    .project-modal-content {
        border-radius: 0;
        max-height: 100vh;
    }

    .project-modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }

    .project-video-container {
        aspect-ratio: 16 / 9;
    }

    .project-title {
        font-size: 1.25rem;
    }

    .project-info {
        padding: 1rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-content {
    padding: 4rem 2rem;
    background-color: var(--color-background);
    color: var(--color-text);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.privacy-container h2:first-child {
    margin-top: 0;
}

.privacy-container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.privacy-container ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.privacy-container li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text);
}

.privacy-container li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent-orange);
    font-weight: bold;
}

.privacy-container a {
    color: var(--color-accent-orange);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.privacy-container a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 1.5rem;
    }

    .privacy-container h2 {
        font-size: 1.25rem;
        margin-top: 2rem;
    }

    .privacy-container p {
        font-size: 0.95rem;
    }
}

/* Gear Page Styles */
.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: none;
    margin: 0;
    background-color: #000000;
    width: 100%;
    box-sizing: border-box;
}

.gear-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #000;
}

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

.gear-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.gear-item-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    text-align: center;
    padding: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    margin: 0;
}

.gear-item-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 0;
    background: var(--color-accent-orange);
    transition: width 0.3s ease;
}

.gear-item:hover .gear-item-title {
    color: var(--color-accent-orange);
}

.gear-item:hover .gear-item-title::after {
    width: 100%;
}

.gear-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.6), inset 0 0 30px rgba(255, 165, 0, 0.3);
}

.gear-item:hover .gear-item-overlay {
    background: rgba(0, 0, 0, 0.2);
}

/* Responsive Gear Page */
@media (max-width: 768px) {
    .gear-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .gear-item-title {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .gear-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.5rem 1rem;
    }

    .gear-item-title {
        font-size: 0.75rem;
        padding: 0.75rem;
    }
}