/* CSS Variables - Editable via ACF Options */
:root {
    --primary-font: var(--primary-font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif);
    --heading-font: var(--heading-font, 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif);
    --fontFamily: var(--fontFamily, 'Inter', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif);
    --bg-color: var(--bg-color, #050505);
    --text-color: var(--text-color, #f0f0f0);
    --accent-line: var(--accent-line, #333333);
    --primary-color: var(--primary-color, #ffffff);
    --accent-color: var(--accent-color, #333333);
    --cursor-size: var(--cursor-size, 10px);
    --star-color: #C9A66B;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f0f0f0;
    --gray-200: #ccc;
    --gray-300: #aaa;
    --gray-400: #888;
    --gray-500: #666;
    --gray-600: #333;
    --gray-700: #0a0a0a;
}

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

/* Essential Lenis CSS */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Ensure body doesn't have overflow:hidden which kills scrolling */
html, body {
    min-height: 100%;
    /* overflow-x: hidden; is fine, but avoid overflow: hidden on html */
}
body {
    font-family: var(--primary-font);
    background-color: var(--gray-700);
    color: var(--white);
}

a {
    text-decoration: none;
    color: var(--white);
}
ul li {
    margin-bottom: 0.5rem;
}
img {
    max-width: 100%;
    height: auto;
}
label {
    font-family: var(--primary-font);
}
button {
    font-family: var(--primary-font);
}
input {
    font-family: var(--primary-font);
}
textarea {
    font-family: var(--primary-font);
}
select {
    font-family: var(--primary-font);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.header.scrolled .logo,
.header.scrolled .nav-link,
.header.scrolled .nav-menu a {
    color: rgba(255, 255, 255, 0.85);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-menu a:hover {
    color: var(--white);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: var(--heading-font);
    transition: color 0.3s ease;
    width: 100px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* WordPress Menu Structure */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.nav-menu li.menu-item {
    margin: 0;
    padding: 0;
}

.nav-menu a,
.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--primary-font);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-menu a:hover,
.nav-link:hover {
    color: var(--white);
}

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

.nav-menu a:hover::after,
.nav-link:hover::after {
    width: 100%;
}

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

.book-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: max-content;
    cursor: none;
    background: transparent;
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 1.1rem;
    font-weight: 500;
}

.book-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.book-button:hover {
    border-color: var(--white);
    color: var(--black);
}

.book-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.book-button .btn-label {
    font-family: var(--primary-font);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.book-button .btn-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.book-button .btn-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.book-button:hover .btn-icon {
    transform: translateX(10px) rotate(-45deg);
}

.hamburger-menu {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
    padding: 0;
}

.hamburger-menu:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.hamburger-menu span {
    width: 20px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Main content spacing */
.main-content {
    margin-top: 0;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    padding: 8rem 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: end;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    position: relative;
    z-index: 10;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: var(--star-color);
    font-size: 1.25rem;
    line-height: 1;
}

.rating-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--primary-font);
}

.hero-headline {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 1rem 0;
}

.hero-description {
    font-family: var(--primary-font);
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 200px;
    cursor: none;
    font-family: var(--primary-font);
}

.cta-button .btn-label {
    font-family: var(--primary-font);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.cta-button .btn-icon {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.cta-button .btn-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.cta-button:hover .btn-icon {
    transform: translateX(10px) rotate(-45deg);
}

.cta-primary,
.cta-secondary {
    background: transparent;
    color: var(--white);
}

.cta-primary:hover,
.cta-secondary:hover {
    border-color: var(--white);
    color: var(--black);
}

.cta-primary:hover::before,
.cta-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-overlay-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 250px;
    height: min-content;
    padding: 6px 6px 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: var(--white);
    border-radius: 10px;
    opacity: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    justify-self: end;
    align-self: end;
}

.overlay-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.fading-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.gallery-image.active {
    opacity: 1;
}

.overlay-text {
    font-family: var(--heading-font);
    font-size: .75rem;
    font-weight: 700;
    color: var(--black);
}

.overlay-text a {
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.overlay-text a:hover {
    opacity: 0.7;
}

/* Custom Cursor */
.cursor-light {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: var(--white);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.1s ease-out;
    z-index: 9999;
    filter: blur(0px);
}

/* Studio Section */
.studio-section {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
    border-top: 1px solid var(--accent-line);
    border-bottom: 1px solid var(--accent-line);
}

.col-left {
    width: 50%;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--accent-line);
    position: relative;
}

.studio-label {
    font-family: var(--primary-font);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
}

.studio-section h1 {
    font-family: var(--heading-font);
    font-size: 4vw;
    font-weight: 600;
    margin-bottom: 1rem;
}

.studio-section h1 span {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

.intro-text {
    font-family: var(--primary-font);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    color: var(--gray-400);
    opacity: 0;
    transform: translateY(30px);
}

.col-right {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
}

.feature-box {
    border-bottom: 1px solid var(--accent-line);
    border-right: 1px solid var(--accent-line);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: background 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.col-right .feature-box:nth-child(2n) {
    border-right: none;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    margin-bottom: 2rem;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-meta {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.feature-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-box:hover .icon-wrapper svg {
    transform: scale(1.2) rotate(-10deg);
}

/* Services Section */
.services-section {
    width: 100%;
    position: relative;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--accent-line);
}

.section-header {
    padding: 2rem 2rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.section-label {
    font-family: var(--primary-font);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    white-space: nowrap;
}

.header-line {
    width: 100%;
    height: 1px;
    background-color: var(--accent-line);
}

.services-container {
    display: flex;
    width: 100%;
    height: 85vh;
    min-height: 600px;
}

.service-col {
    flex: 1;
    border-right: 1px solid var(--accent-line);
    position: relative;
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
    overflow: hidden;
    cursor: none;
}

.service-col:last-child {
    border-right: none;
}

.service-content {
    height: 100%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.service-col:hover {
    flex: 2.5;
    background-color: var(--white);
}

.service-col:hover .service-content {
    color: var(--black);
}

.service-col:hover .service-desc {
    color: var(--gray-600);
    opacity: 1;
    transform: translateY(0);
}

.service-col:hover .service-icon {
    transform: scale(1.1);
}

.service-col:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 2rem;
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-title {
    font-family: var(--heading-font);
    font-size: 3.5vw;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.service-desc {
    font-family: var(--primary-font);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 350px;
    color: var(--gray-400);
    transition: all 0.5s ease;
}

.service-bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-tag {
    font-family: var(--heading-font);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

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

.amount {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.period {
    font-family: var(--primary-font);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.1rem;
    color: inherit;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.service-cta svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.service-cta:hover svg {
    transform: translateX(10px);
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--bg-color);
    position: relative;
    padding-bottom: 8rem;
    z-index: 5;
    overflow: hidden;
}

.gallery-wrapper {
    padding: 4rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gallery-item {
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
    opacity: 1 !important; /* Force opacity 1 for all gallery items */
}

.img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: none;
}

.col-fast .gallery-item:nth-child(odd) .img-wrapper { aspect-ratio: 3/5; }
.col-slow .gallery-item:nth-child(even) .img-wrapper { aspect-ratio: 1/2; }

.img-wrapper img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(110%) brightness(90%);
    transition: filter 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s ease;
    will-change: transform, filter;
}

.img-wrapper:hover img {
    filter: grayscale(0%) contrast(100%) brightness(100%);
    transform: scale(1.05);
}

.overlay-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.img-wrapper:hover .overlay-badges {
    opacity: 1;
    transform: translateY(0);
}

.badge {
    font-family: var(--primary-font);
    font-size: 0.7rem;
    color: var(--black);
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    backdrop-filter: blur(4px);
    font-weight: 700;
    text-transform: uppercase;
}

.portfolio-footer {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.archive-btn {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    overflow: hidden;
}

.btn-text {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.btn-count {
    font-family: var(--primary-font);
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

.archive-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.archive-btn:hover {
    border-color: var(--white);
}

.archive-btn:hover::before {
    transform: translateY(0);
}

.archive-btn:hover .btn-text,
.archive-btn:hover .btn-count {
    color: var(--black);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-color);
    padding-bottom: 8rem;
    position: relative;
    border-bottom: 1px solid var(--accent-line);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1px;
    background-color: var(--accent-line);
    border-top: 1px solid var(--accent-line);
    border-bottom: 1px solid var(--accent-line);
    max-width: 1400px;
    margin: 4rem auto 0;
}

.review-card {
    background-color: var(--bg-color);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: none;
}

.review-card:not(.featured-card):hover {
    background-color: var(--white);
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.review-card:not(.featured-card):hover .review-quote,
.review-card:not(.featured-card):hover .review-stars,
.review-card:not(.featured-card):hover .author-name {
    color: var(--black);
}

.review-card:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
.review-card:nth-child(2) { grid-column: 1 / 2; grid-row: 2 / 3; }

.featured-card {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    position: relative;
    padding: 0;
    display: flex;
    align-items: flex-end;
}

.review-card:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
.review-card:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }
.review-card:nth-child(6) { grid-column: 3 / 4; grid-row: 3 / 4; }

.review-stars {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.review-quote {
    font-family: var(--primary-font);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-200);
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    border: 1px solid var(--gray-600);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.shoot-type {
    font-family: var(--primary-font);
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.6s ease, transform 0.6s ease;
    z-index: 1;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, transparent 60%);
    z-index: 2;
}

.featured-content {
    position: relative;
    z-index: 3;
    padding: 4rem;
    width: 100%;
}

.featured-quote {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 90%;
}

.featured-card .review-stars { color: var(--white); }
.featured-card .author-name { font-size: 1.2rem; }
.featured-card .shoot-type { color: var(--gray-300); border-left: 1px solid var(--gray-500); padding-left: 10px; margin-left: 10px; }

.featured-card:hover .featured-bg {
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* CTA Section */
.cta-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--accent-line);
}

.marquee-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%) rotate(-5deg) scale(1.1);
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scrollText 40s linear infinite;
}

.marquee-track span {
    font-size: 8rem;
    font-weight: 600;
    margin-right: 2rem;
    color: var(--white);
    -webkit-text-stroke: 2px var(--white);
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cta-container {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.cta-title {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 0.9;
    margin-bottom: 4rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title span {
    display: block;
}

.cta-title .line-1 {
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--gray-400);
}

.cta-title .line-2 {
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--white);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.big-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 300px;
    cursor: none;
}

.btn-label {
    font-family: var(--primary-font);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.btn-icon {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.big-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.primary-btn,
.outline-btn {
    background: transparent;
    color: var(--white);
}

.primary-btn:hover,
.outline-btn:hover {
    border-color: var(--white);
    color: var(--black);
}

.primary-btn:hover::before,
.outline-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.big-btn:hover .btn-icon {
    transform: translateX(10px) rotate(-45deg);
}

.outline-btn:hover .btn-icon {
    transform: translateX(10px);
}

/* Footer Section */
.footer-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 6rem 2rem 2rem;
    position: relative;
    border-top: 1px solid var(--accent-line);
    overflow: hidden;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-brand-col {
    flex: 1;
    min-width: 300px;
}

.footer-heading {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-sub {
    font-family: var(--primary-font);
    color: var(--gray-400);
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-form {
    display: flex;
    border-bottom: 1px solid var(--gray-600);
    max-width: 400px;
    padding-bottom: 0.5rem;
    transition: border-color 0.3s ease;
}

.footer-form:focus-within {
    border-color: var(--white);
}

.minimal-input {
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.arrow-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.arrow-btn:hover {
    transform: translateX(5px);
}

.arrow-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.footer-nav-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.nav-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.col-label {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    letter-spacing: 1px;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--gray-300);
    font-family: var(--primary-font);
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: max-content;
}

.footer-links a svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.footer-links a:hover svg {
    transform: rotate(0deg);
}

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

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

.footer-address {
    font-family: var(--primary-font);
    color: var(--gray-300);
    font-style: normal;
    line-height: 1.6;
}
.footer-address a {
    color: var(--gray-300) !important;
}

.footer-big-type {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--accent-line);
    border-bottom: 1px solid var(--accent-line);
    padding: 1rem 0;
}

.giant-text {
    font-family: var(--heading-font);
    font-size: 18vw;
    font-weight: 800;
    line-height: 0.8;
    color: var(--bg-color);
    -webkit-text-stroke: 2px var(--gray-600);
    display: block;
    text-align: center;
    letter-spacing: -0.05em;
    transition: all 0.5s ease;
    cursor: default;
}

.footer-big-type:hover .giant-text {
    color: var(--white);
    -webkit-text-stroke: 0px transparent;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: var(--primary-font);
    font-size: 0.75rem;
    color: var(--gray-500);
}

.legal-group {
    display: flex;
    gap: 1.5rem;
}

.legal-group a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-group a:hover {
    color: var(--white);
}

.developer-credit {
    margin-top: 0.5rem;
    font-family: var(--primary-font);
    font-size: 0.75rem;
    color: var(--gray-500);
}

.developer-credit a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: var(--white);
}

.back-to-top {
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: scale(1.1);
}

.circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

.circle-text text {
    fill: var(--white);
    font-family: var(--primary-font);
    letter-spacing: 2px;
}

.center-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
}

@keyframes rotateText {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Reveal animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    visibility: visible; /* Ensure element is visible even when opacity is 0 */
    will-change: opacity, transform;
}

.reveal-card {
    opacity: 0;
    transform: translateY(20px);
    visibility: visible;
    will-change: opacity, transform;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    visibility: visible;
    will-change: opacity, transform;
}

/* Force visibility for revealed elements */
.reveal-text.revealed,
.reveal-card.revealed,
.fade-in.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 6rem 1rem 4rem;
        gap: 3rem;
    }

    .hero-overlay-box {
        display: none;
    }

    .studio-section {
        flex-direction: column;
    }

    .col-left,
    .col-right {
        width: 100%;
    }

    .col-left {
        border-right: none;
        border-bottom: 1px solid var(--accent-line);
        padding: 4rem 2rem;
    }

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

    .col-right .feature-box:nth-child(odd) {
        border-right: none;
    }

    :root {
        --cursor-size: 0px;
    }

    * {
        cursor: auto;
    }

    .services-container {
        flex-direction: column;
        height: auto;
    }

    .service-col {
        height: 400px;
        border-right: none;
        border-bottom: 1px solid var(--accent-line);
    }

    .service-col:hover {
        flex: 1;
        background-color: var(--bg-color);
    }

    .service-col:hover .service-content {
        color: var(--white);
    }

    .service-col:hover .service-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .service-cta {
        opacity: 1;
        transform: translateY(0);
        color: var(--white);
    }

    .service-title {
        font-size: 3rem;
        white-space: normal;
    }

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

    .gallery-col {
        transform: none !important;
    }

    .img-wrapper {
        aspect-ratio: 4/5 !important;
    }

    .btn-text {
        font-size: 2rem;
    }

    .overlay-badges {
        opacity: 1;
        transform: translateY(0);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0;
        border: none;
        margin: 0;
        width: 100%;
    }

    .review-card,
    .featured-card {
        grid-column: auto !important;
        grid-row: auto !important;
        border-bottom: 1px solid var(--accent-line);
        width: 100%;
    }

    .featured-card {
        height: 500px;
    }

    .featured-quote {
        font-size: 1.8rem;
    }

    .review-card:not(.featured-card):hover {
        transform: none;
        box-shadow: none;
    }

    .footer-top {
        flex-direction: column;
        gap: 4rem;
    }

    .footer-nav-grid {
        gap: 2rem;
        width: 100%;
        justify-content: space-between;
    }

    .giant-text {
        font-size: 22vw;
    }

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

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

/* Page Content */
.page-content,
.single-post {
    max-width: 800px;
    margin: 0 auto;
}

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

.entry-title {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1rem;
}

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

.entry-title a:hover {
    opacity: 0.8;
}

.entry-meta {
    font-family: var(--primary-font);
    font-size: 0.875rem;
    color: var(--gray-400);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.entry-meta a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-meta a:hover {
    color: var(--white);
}

.entry-content {
    font-family: var(--primary-font);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-200);
}

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

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    font-family: var(--heading-font);
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.entry-content h3 {
    font-size: 1.5rem;
}

.entry-content a {
    color: var(--white);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.entry-content a:hover {
    opacity: 0.8;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
}

.entry-content ul,
.entry-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

.entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-line);
    font-family: var(--primary-font);
    font-size: 0.875rem;
    color: var(--gray-400);
}

.entry-footer a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-footer a:hover {
    color: var(--white);
}

.post-thumbnail {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 8px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.post-thumbnail:hover img {
    transform: scale(1.05);
}

/* Archive & Search Pages */
.page-header {
    margin-bottom: 4rem;
    text-align: center;
}

.page-title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-family: var(--primary-font);
    font-size: 1.25rem;
    color: var(--gray-400);
}

.archive-description {
    font-family: var(--primary-font);
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-top: 1rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.post-card {
    background-color: var(--bg-color);
    border: 1px solid var(--accent-line);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.post-card .post-content {
    padding: 2rem;
}

.post-card .entry-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.post-card .entry-meta {
    margin-bottom: 1rem;
}

.entry-summary {
    font-family: var(--primary-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--primary-font);
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.read-more svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

.read-more:hover svg {
    transform: translateX(5px);
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.no-posts p {
    font-family: var(--primary-font);
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

/* Pagination */
.pagination,
.posts-navigation {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-line);
}

.page-numbers,
.post-page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-numbers a,
.page-numbers span,
.post-page-numbers a,
.post-page-numbers span {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-family: var(--primary-font);
    font-size: 1rem;
    color: var(--gray-300);
    text-decoration: none;
    border: 1px solid var(--accent-line);
    transition: all 0.3s ease;
}

.page-numbers a:hover,
.post-page-numbers a:hover {
    color: var(--white);
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.page-numbers .current,
.post-page-numbers .current {
    color: var(--white);
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Search Form */
.search-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.search-field {
    flex: 1;
    padding: 1rem;
    font-family: var(--primary-font);
    font-size: 1rem;
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--accent-line);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-field:focus {
    border-color: var(--white);
}

.search-field::placeholder {
    color: var(--gray-500);
}

.search-submit {
    padding: 1rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--accent-line);
    border-radius: 4px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.search-submit svg {
    width: 20px;
    height: 20px;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 4rem 2rem;
}

.error-404 .page-title {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.error-404 .page-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.error-404-links {
    margin: 3rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-links h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.error-404-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.error-404-links li {
    margin-bottom: 0.5rem;
}

.error-404-links a {
    font-family: var(--primary-font);
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-404-links a:hover {
    color: var(--white);
}

.error-404-actions {
    margin-top: 3rem;
}

/* Comments */
.comments-area {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--accent-line);
}

.comments-title {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--accent-line);
    border-radius: 8px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-author .fn {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--white);
}

.comment-author .says {
    display: none;
}

.comment-meta {
    font-family: var(--primary-font);
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.comment-content {
    font-family: var(--primary-font);
    line-height: 1.6;
    color: var(--gray-200);
}

.comment-reply-link {
    font-family: var(--primary-font);
    font-size: 0.875rem;
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-reply-link:hover {
    color: var(--white);
}

.comment-form {
    margin-top: 3rem;
}

.comment-form label {
    display: block;
    font-family: var(--primary-font);
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--primary-font);
    font-size: 1rem;
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--accent-line);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
    margin-bottom: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--white);
}

.comment-form .submit {
    padding: 1rem 2rem;
    font-family: var(--primary-font);
    font-weight: 600;
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--accent-line);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .submit:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.no-comments {
    font-family: var(--primary-font);
    color: var(--gray-400);
    text-align: center;
    padding: 2rem;
}

/* Post Navigation */
.post-navigation {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-line);
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-previous,
.nav-next {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--accent-line);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-subtitle {
    display: block;
    font-family: var(--primary-font);
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.125rem;
    color: var(--white);
}

.nav-next {
    text-align: right;
}

/* Page Links */
.page-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-line);
    font-family: var(--primary-font);
    font-size: 0.875rem;
    color: var(--gray-400);
}

.page-links a {
    color: var(--gray-300);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.page-links a:hover {
    color: var(--white);
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

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

    .logo {
        font-size: 1.25rem;
    }

    .book-button {
        padding: 1rem 1.5rem;
        min-width: auto;
        font-size: 0.95rem;
    }

    .book-button .btn-label {
        font-size: 0.95rem;
    }

    .book-button .btn-icon {
        width: 24px;
        height: 24px;
    }

    .hamburger-menu {
        width: 44px;
        height: 44px;
    }

    .hero-container {
        padding: 5rem 1rem 3rem;
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

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

    .hero-cta {
        gap: 0.75rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        min-width: auto;
    }

    .cta-button .btn-label {
        font-size: 0.95rem;
    }

    .cta-button .btn-icon {
        width: 24px;
        height: 24px;
    }

    .studio-section h1 {
        font-size: 28px;
    }

    .cta-section {
        height: auto;
        padding: 6rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .big-btn {
        width: 100%;
    }

    .marquee-track span {
        font-size: 4rem;
    }

    .footer-nav-grid {
        flex-direction: column;
    }

    .footer-heading {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 6rem 1rem 2rem;
    }

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

    .nav-links {
        grid-template-columns: 1fr;
    }

    .error-404 .page-title {
        font-size: 4rem;
    }
}

