/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    color: #000;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    background: transparent;
    backdrop-filter: none;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.nav-link {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.8), transparent);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: rgba(0, 0, 0, 1);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ===== NEW LANDING SECTION ===== */
.new-lander-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background: #ffffff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
}

.logo-reveal-container {
    position: fixed;
    top: 15vh;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    will-change: transform;
    z-index: 5;
}

.logo-layer {
    position: absolute;
    width: 100%;
    height: auto;
    max-height: 80%;
    object-fit: contain;
    opacity: 0;
    transform: scale(1);
    transition: none;
}

.logo-layer:first-child {
    opacity: 1;
    transform: scale(1);
}

.logo-text {
    position: fixed;
    bottom: 20vh;
    right: 15%;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #000;
    opacity: 1;
    transform: translateY(0);
    transition: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 0.9;
    z-index: 10;
}

.text-stern,
.text-blende {
    display: inline-block;
    transition: none;
}

.text-stern {
    clip-path: inset(0 100% 0 0);
}

.text-blende {
    clip-path: inset(0 100% 0 0);
}

.scroll-indicator-white {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
    visibility: visible;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    z-index: 3;
}

.scroll-indicator-white span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
}

.scroll-arrow-white {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #000, transparent);
    position: relative;
}

.scroll-arrow-white::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: #000;
    border-radius: 50%;
    animation: scrollDotWhite 2s ease-in-out infinite;
}

@keyframes scrollDotWhite {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) translateY(20px);
        opacity: 1;
    }
}

/* ===== SECTION 2: TEXT ANIMATION ===== */
.text-animation-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 2;
}

.text-animation-section .text-container {
    width: 90%;
    max-width: 1200px;
    opacity: 0;
    transform: translateY(0);
    will-change: opacity, transform;
}

.text-animation-section .hero-text {
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #000;
}

.text-animation-section .line {
    display: block;
    margin-bottom: 0.3em;
    white-space: nowrap;
    overflow: visible;
}

/* Word Cycler: Stacks words on top of each other */
.word-cycler {
    display: inline-grid;
    vertical-align: bottom;
    height: 1.2em;
    overflow: visible;
    position: relative;
}

.word-cycler .word {
    grid-area: 1 / 1 / 2 / 2;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    transform-origin: bottom center;
    white-space: nowrap;
    will-change: transform, opacity;
}

.word-cycler .word.active {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* Buzzwords */
.buzzword {
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

#buzz-elsewhere {
    white-space: nowrap;
    display: inline-block;
    transform-origin: left center;
}

/* ===== SECTION 3: CAROUSEL - FULL-SCREEN CARD SWIPER ===== */
.carousel-section {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 5;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    user-select: none;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Video/Media Container */
.project-media {
    position: absolute;
    inset: 0;
    background: #000;
}

/* Simple poster image (when no video) */
.project-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Native video player */
.project-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
}

/* Gradient overlay for text readability */
.project-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        transparent 20%,
        transparent 60%,
        rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Play button overlay */
.play-button-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.play-button-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button-circle svg {
    margin-left: 4px; /* Optical centering for play icon */
}

.project-card:hover .play-button-circle {
    background: rgba(0, 0, 0, 0.7);
    border-color: #fff;
    transform: scale(1.1);
}

/* Project Info - Always visible */
.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 100px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
    pointer-events: none;
}

.project-info h2 {
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

.project-description {
    font-size: clamp(15px, 1.8vw, 20px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 550px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    font-weight: 400;
}

.project-details {
    font-size: clamp(15px, 1.8vw, 20px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 550px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    font-weight: 400;
}

.project-credits {
    font-size: clamp(11px, 1.2vw, 15px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 4px 0 0 0;
    max-width: 600px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.credit-line {
    display: block;
}

.credit-role {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-left {
    left: 24px;
}

.carousel-nav-right {
    right: 24px;
}

.carousel-nav svg {
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.carousel-nav-left:hover svg {
    transform: translateX(-3px);
}

.carousel-nav-right:hover svg {
    transform: translateX(3px);
}

/* Dot Indicators */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Project Counter */
.carousel-counter {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    z-index: 100;
}

/* ===== SECTION 3: PHONE / SOCIAL ===== */
.phone-section-wrapper {
    min-height: 100vh;
    background: #ffffff;
    padding: 80px 0;
}

.phone-container {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.phone-viewer {
    position: relative;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#phone-canvas {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    z-index: 10;
}

.phone-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px 60px 20px;
    background: #ffffff;
    color: #1a1a1a;
}

.phone-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.phone-content .description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.phone-content .description strong {
    color: #1a1a1a;
}

.phone-content a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 700;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 100% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: color 0.3s ease, background-size 0.3s ease;
}

.phone-content a:hover {
    color: #000;
    background-size: 100% 2px;
}

.additional-content {
    margin-top: 2rem;
    max-width: 500px;
}

.additional-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.additional-content h1:first-child {
    margin-top: 0;
}

.additional-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.additional-content h2:first-child {
    margin-top: 0;
}

.additional-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.additional-content p strong {
    color: #1a1a1a;
}

/* Parallax Scrolling Effect - Phone stays in view while content scrolls */
@media (min-width: 969px) {
    .phone-viewer {
        position: sticky;
        top: 0;
        height: 100vh;
        align-self: start;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .phone-content {
        padding: 40px 60px;
    }
    
    .phone-content h1 {
        font-size: 3rem;
    }
    
    .phone-content .description {
        font-size: 1.1rem;
    }
}

@media (max-width: 968px) {
    .nav-content {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .carousel-section {
        aspect-ratio: 16 / 9;
    }
    
    .phone-section-wrapper {
        overflow: hidden;
    }
    
    .phone-container {
        grid-template-columns: 1fr;
        grid-template-rows: 60vh auto;
    }
    
    .phone-viewer {
        overflow: visible;
    }
    
    .phone-content {
        max-width: 100vw;
        overflow-wrap: break-word;
        padding: 30px 40px;
    }
    
    .phone-content h1 {
        font-size: 2.5rem;
    }
    
    .additional-content h1 {
        font-size: 1.65rem;
    }
    
    .project-info {
        padding: 24px 80px;
    }
    
    .carousel-nav {
        width: 48px;
        height: 48px;
    }
    
    .carousel-nav-left {
        left: 16px;
    }
    
    .carousel-nav-right {
        right: 16px;
    }
}

@media (max-width: 768px) {
    /* Fix 4: Text animation overflow */
    .text-animation-section {
        overflow: hidden;
    }
    
    .text-animation-section .hero-text {
        font-size: clamp(1.8rem, 5.5vw, 3rem);
    }
    
    .text-animation-section .line {
        white-space: normal;
    }
    
    #buzz-elsewhere {
        max-width: 100vw;
        overflow: hidden;
    }
    
    /* Clip GSAP pin wrapper */
    .pin-spacer {
        overflow: hidden !important;
    }
    
    /* Fix 3: Carousel mobile layout */
    .carousel-section {
        aspect-ratio: 16 / 9;
    }
    
    .carousel-nav {
        width: 44px;
        height: 44px;
    }
    
    .carousel-nav-left {
        left: 12px;
    }
    
    .carousel-nav-right {
        right: 12px;
    }
    
    .project-info {
        padding: 16px 20px;
        padding-bottom: 44px;
    }
    
    .project-info h2 {
        font-size: clamp(20px, 5vw, 28px);
        margin-bottom: 2px;
    }
    
    .project-details {
        font-size: clamp(11px, 2.5vw, 14px);
        max-width: 100%;
    }
    
    .project-credits {
        display: none;
    }
    
    .carousel-dots {
        bottom: 16px;
    }
    
    .carousel-counter {
        top: 16px;
        right: 16px;
        font-size: 12px;
    }
    
    /* Fix 5: Phone viewer sizing */
    #phone-canvas {
        min-height: 50vh;
    }
    
    /* Fix 2: Match additional-content font sizes on mobile */
    .additional-content p {
        font-size: 1rem;
    }
    
    .phone-content .description {
        font-size: 1rem;
    }
    
    /* Fix: Text padding so it doesn't overflow right edge */
    .phone-content {
        padding: 30px 20px;
    }
    
    .additional-content h1 {
        font-size: 1.65rem;
    }
    
    /* Fix: Carousel dots smaller on mobile */
    .carousel-dot {
        width: 7px;
        height: 7px;
    }
    
    .carousel-dots {
        gap: 6px;
    }
    
    /* Play button smaller on mobile */
    .play-button-circle {
        width: 52px;
        height: 52px;
    }
    
    .play-button-circle svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 640px) {
    .phone-container {
        grid-template-rows: 55vh auto;
    }
    
    .phone-content {
        padding: 20px 30px;
    }
    
    .phone-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .phone-content .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
}

/* ===== TRANSITION TEXT DIVIDER ===== */
.transition-text-section {
    position: relative;
    height: 18vh;
    background: #ffffff;
}

.transition-text-container {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.transition-hero-text {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000;
}

.transition-word-cycler {
    display: block;
    position: relative;
    height: 1.3em;
}

.transition-word {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    white-space: nowrap;
    opacity: 0;
}

.transition-word.active {
    opacity: 1;
}

/* ===== TEAM VIEWER SECTION ===== */
.team-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-canvas {
    width: 100%;
    aspect-ratio: 3 / 4;
    cursor: grab;
    overflow: hidden;
    touch-action: pan-y;
}

.team-canvas:active {
    cursor: grabbing;
}

/* ===== ABOUT US SECTION ===== */
.about-section {
    position: relative;
    min-height: 120vh;
}

.about-content {
    position: relative;
    z-index: 1;
    padding: 0 25vw;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-block {
    min-height: 14vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 580px;
    opacity: 0;
    will-change: transform, opacity;
}

.about-block-1 {
    align-self: flex-start;
}

.about-block-2 {
    align-self: flex-end;
}

.about-block-3 {
    align-self: flex-start;
}

.about-block-4 {
    align-self: flex-end;
}

.about-block-outro {
    align-self: center;
    text-align: center;
    max-width: 100%;
    min-height: 22vh;
    align-items: center;
    margin-top: 10vh;
}

.about-block p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 400;
}

.about-block p strong {
    font-weight: 700;
    color: #1a1a1a;
}

.outro-line {
    font-size: clamp(0.9rem, 1.4vw, 1.1rem) !important;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #888 !important;
    margin-bottom: 0.5rem;
}

.about-block h2 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.outro-logo {
    width: clamp(120px, 20vw, 220px);
    height: auto;
    opacity: 0.85;
}

@media (max-width: 768px) {
    /* Team viewer mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-canvas {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Fix 1: About Us section mobile */
    .about-content {
        padding: 0 6vw;
    }

    .about-block {
        min-height: auto;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .about-block p {
        font-size: 1.15rem;
        line-height: 1.8;
    }

    .about-block-1,
    .about-block-2,
    .about-block-3,
    .about-block-4 {
        align-self: center;
    }
    
    .about-block-outro {
        margin-top: 3vh;
    }
}

@media (max-width: 480px) {
    .carousel-section {
        aspect-ratio: 16 / 9;
    }
    
    .carousel-nav {
        width: 36px;
        height: 36px;
    }
    
    .carousel-nav-left {
        left: 8px;
    }
    
    .carousel-nav-right {
        right: 8px;
    }
    
    .project-info h2 {
        font-size: clamp(16px, 4.5vw, 22px);
    }
    
    .project-details {
        font-size: 11px;
    }
    
    /* Phone viewer smaller screens */
    #phone-canvas {
        min-height: 45vh;
    }
    
    .phone-content {
        padding: 20px 16px;
    }
    
    .carousel-dot {
        width: 6px;
        height: 6px;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0a0a0a;
    color: #999;
    padding: 60px 8vw 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #888;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: #888;
    text-decoration: none;
    line-height: 2;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    width: 80px;
    height: auto;
    opacity: 0.7;
}

.footer-tagline {
    font-size: 0.85rem !important;
    color: #666 !important;
    font-style: italic;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 6vw 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
