/* Base */
:root {
    --color-bg: #ede9e5;
    --color-text: #000000;
    --font-main: 'Inter', sans-serif;
    --space: clamp(2rem, 1vw, 8rem);
    --transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --grid-gap: 8vw;
    --space-y: clamp(4rem, 8vw, 8rem);
}





/* Reset et variables */
:root {
    --bubble-height: 3.35rem;
    --bubble-left-width: 5rem;
    --bubble-right-width: 11rem;
    --bubble-center-width: 17rem;
    --header-padding: 1rem;
    --bubble-gap: 2rem;
    --icon-gap: 1.5rem;
}

/* Scroll container pour test */
.scroll-container {
    height: 200vh;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--header-padding);
    z-index: 50;
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Bubble styles */
.bubble {
    background-color: rgba(249, 249, 249, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 9999px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
}

.bubble:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}


.bubble-left {
    width: var(--bubble-left-width);
    height: var(--bubble-height);
    display:flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translateX(-35%);
    margin-top:0.5rem;
}


.bubble-right {
    width: var(--bubble-right-width);
    height: var(--bubble-height);
    flex-shrink: 0;
    transform: translateX(16%);
    gap: var(--icon-gap);
    margin-top:0.5rem;
}

/* Center bubble */
.bubble-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: var(--bubble-center-width);
    height: var(--bubble-height);
    z-index: 1;
    margin-top:0.5rem;
}


/* style icone clique*/
.icon-button svg {
    position: relative;
    top: -1px;
    transform: scale(1.1);
}

.icon-button:active svg {
    position: relative;
    top: 1px;
}


/*animation humberger*/

.menu-toggle-inner {
   position: relative;
   top: -1px;
}

.menu-toggle:active .menu-toggle-inner {
   position: relative;
   top: 1px;
}



/* Logo container */
.logo-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.logo img {
    height: 60%;
    width: auto;
    object-fit: contain;
}

.logo-1 {
    height: 50px !important;
    transform: translateY(0);
    opacity: 1;
}

.logo-2 {
    transform: translateY(100%);
    opacity: 0;
}

.logo-1.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.logo-2.show {
    transform: translateY(0);
    opacity: 1;
}

/* Button styles */

.icon-button {
    border: none;
    background: none;
    padding: 0.5rem;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: none;
    background: none;
    padding: 0.5rem;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.menu-toggle:hover,
.icon-button:hover {
    opacity: 1;
}








/* Media queries nav bubble */

@media (max-width: 1024px) {
    :root {
        --bubble-left-width: 5rem;
        --bubble-right-width: 9rem;
        --bubble-center-width: 15rem;
        --header-padding: 1.25rem;
        --bubble-gap: 1rem;
        --icon-gap: 1rem;
    }

    .header-container {
        padding: 0 2rem;
    }
    

}

@media (max-width: 768px) {
    :root {
        --bubble-height: 3.35rem;
        --bubble-center-height: 4rem;
        --bubble-left-width: 4.5rem;
        --bubble-right-width: 6rem;
        --bubble-center-width: 13rem;
        --header-padding: 0.75rem;
        --bubble-gap: 1rem;
        --icon-gap: 0.75rem;
    }
    
    .bubble-left {
    transform: translateX(-30%);
}
    
    .bubble-right {
    transform: translateX(25%);
}
    
    .account-icon {
        display: none !important;
    }
    
        .bubble-center {
        margin-top: 0.5rem;
    }

    .header-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --bubble-height: 3rem;
        --bubble-center-height: 3.5rem;
        --bubble-left-width: 4rem;
        --bubble-right-width: 4rem;
        --bubble-center-width: 11rem;
        --header-padding: 0.5rem;
        --bubble-gap: 0.75rem;
        --icon-gap: 0.5rem;
    }

.bubble-left {
    transform: translateX(-20%);
}


.bubble-center {
        margin-top: 0.5rem;
    }

.bubble-right {
    transform: translateX(20%);
}

    .header-container {
        padding: 0 1rem;
    }

    .search-icon {
        display: none !important;
    }

    .account-icon {
        display: none !important;
    }
    
       .bubble-right {
        gap: 1rem; /* Un peu plus d'espace entre les deux icônes restantes */
    }

.logo-1 {
    height: 35px !important;
}

    .menu-toggle svg,
    .icon-button svg {
        width: 16px;
        height: 16px;
    }
}











[data-theme="dark"] {
    --color-bg: #151515;
    --color-text: #ffffff;
}

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

html, body {
    height: 100%;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    font-weight: 200;
    margin-top: 8.5vh;
    line-height: 1.4;
    transition: background-color var(--transition),
                color var(--transition);
}

/* Navigation */
.settings {
    position: inherit;
    top: var(--space);
    right: var(--space);
    display: flex;
    gap: 1.5rem;
    z-index: 100;
    background: transparent !important;
}

.theme-toggle {
    width: 48px;
    height: 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-text);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
}

.theme-toggle .circle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--color-text);
    border-radius: 50%;
    transition: transform var(--transition);
}

[data-theme="dark"] .theme-toggle .circle {
    transform: translateX(24px);
}

.lang-toggle {
    height: 24px;
    padding: 0 12px;
    background: var(--color-bg);
    border: 1px solid var(--color-text);
    border-radius: 12px;
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 200;
    cursor: pointer;
}

/* Main Layout */
main {
    padding: var(--space);
}






/* Section 1 */

.opening {
    width: 100%;
    padding: 6rem 1rem;
    display: flex;
    align-items: center;
}

.opening-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 8rem; /* Ajout d'un padding horizontal pour centrer le contenu */
}

.opening-text {
    margin-bottom: 2rem;
    max-width: 500px; /* Limitation de la largeur pour un meilleur contrôle */
    width: 100%;
}

.main-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.creative-studio {
    font-size: 4.75rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.specialty {
    font-size: 1.25rem;
    font-weight: 200;
}

.slogan {
    font-family: "Times New Roman", serif;
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.8;
}

.opening-video {
    width: 450px;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.opening-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop */
@media (min-width: 1150px) {
    .opening-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 4rem;
    }

    .opening-text {
        width: 45%;
        margin-bottom: 0;
        padding-left: 2rem; /* Ajout d'un padding à gauche pour aligner avec le "BIO" */
    }
}

@media (max-width: 1149px) {
    .opening-content {
        padding: 0 2rem; /* Réduction du padding sur tablette/mobile */
    }
}

/* Tablet */
@media (min-width: 630px) and (max-width: 1149px) {
    .opening-content {
        gap: 2rem;
    }
    
    .opening-video {
        order: 2;
    }

    .opening-text {
        order: 1;
        width: 450px;
    }
}

/* Mobile */
@media (max-width: 629px) {
    .opening {
        padding: 4rem 1rem;
    }

    .opening-content {
        gap: 2rem;
    }
    
    .opening-video {
        order: 2;
        width: 135%;
    }

    .opening-text {
        order: 1;
        width: 113%;
        margin-top: -30%;
    }

#creative-studio-en {
        order: 1;
        width: 150%;
        margin-top: -30%;
    }

    .creative-studio {
        font-size: 4.75rem;
        margin-bottom: 2.5rem;
    }
}





/* About Section */
/* Style pour la section About */
.about {
    width: 100%;
    padding: 0rem 1rem 10rem 1rem;
}

.about-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Style pour le conteneur de texte */
.about-text {
    margin-bottom: 2rem;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 3rem;
}

.about-text p {
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 2rem;
}

/* Style pour le conteneur d'image */
.about-image {
    width: 564px;
    filter: grayscale(100%);
}

.about-image:hover {
    filter: grayscale(0%);
}

/* Style fixe pour l'image */
.about-image img {
    width: 564px !important;
    height: 450px !important;
    object-fit: cover;
}

/* Style desktop (à partir de 1150px) */
@media (min-width: 1150px) {
    .about-content {
        flex-direction: row;
        gap: 4rem;
    }

    .about-text {
        width: 45%;
    }
}

/* Style tablette (entre 630px et 1149px) */
@media (min-width: 630px) and (max-width: 1149px) {
    .about-content {
        gap: 2rem;
    }
    
    .about-image {
        order: 2;
    }

    .about-text {
        order: 1;
        width: 450px;
    }
}

/* Style mobile (en dessous de 630px) */
@media (max-width: 629px) {
    .about-content {
        gap: 2rem;
    }
    
    .about-image {
        order: 2;
        width: 100%;
    }

    .about-image img {
        width: 100% !important;
        height: auto !important;
        max-height: 450px !important;
    }

    .about-text {
        order: 1;
        width: 100%;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}









/* section projets */
.projects-section {
  background-color: #ede9e5;
  min-height: 100vh;
  position: relative;
  padding: 1rem;
  width: 100%;
  overflow-x: hidden; /* Empêche le scroll horizontal */
}

.section-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  color: #000;
  font-weight: 300;
}

/* Grille de base (mobile) */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  width: 100%;
}

.project-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Sur mobile */
.col-full {
  grid-column: 1 / -1; /* Utilise toute la largeur disponible */
}

.col-half {
  grid-column: span 1;
}

.project-image {
  position: relative;
  margin-bottom: 0.75rem;
  background-color: #d1d1d1;
  width: 100%;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.project-image:hover img {
    filter: grayscale(0%);
}

/* Formats d'images avec des ratios plus raisonnables */
.panoramic {
  aspect-ratio: 16/9; /* Moins extrême que 21/9 */
}

.landscape {
  aspect-ratio: 4/3; /* Plus raisonnable que 16/9 */
}

.square {
  aspect-ratio: 1;
}

.portrait {
  aspect-ratio: 3/4;
}

.tall-portrait {
  aspect-ratio: 4/5; /* Moins extrême que 3/4 */
}

.project-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 300;
  width: 100%;
}



/* Media Queries */
@media (min-width: 640px) {
  .projects-section {
    padding: 1.5rem;
  }

  .section-number {
    top: 1.5rem;
    left: 1.5rem;
  }

  .projects-grid {
    gap: 2rem;
  }
}

/* Tablette */
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
  }

  .col-full {
    grid-column: span 6;
  }

  .col-half {
    grid-column: span 3;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .projects-section {
    padding: 2rem;
  }

  .projects-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
  }

  /* Tailles plus raisonnables pour desktop */
  .project-item:nth-child(1) { grid-column: span 6; }  /* Moins large que 8 */
  .project-item:nth-child(2) { grid-column: span 3; }  /* Plus petit que 4 */
  .project-item:nth-child(3) { grid-column: span 3; }
  .project-item:nth-child(4) { grid-column: span 4; }  /* Plus petit que 6 */
  .project-item:nth-child(5) { grid-column: span 4; }
  .project-item:nth-child(6) { grid-column: span 4; }
  .project-item:nth-child(7) { grid-column: span 6; }  /* Taille moyenne */
  .project-item:nth-child(8) { grid-column: span 3; }
  .project-item:nth-child(9) { grid-column: span 3; }
}

/* Grand écran */
@media (min-width: 1280px) {
  .projects-section {
    padding: 3rem;
  }

  .projects-grid {
    gap: 4rem;
  }
}
        
       
       
       
       
       
       
       

/* Cursor */
.cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--color-text);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-text);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor-text {
    position: fixed;
    left: 30px;
    top: 0;
    font-size: 1rem;
    font-weight: 200;
    color: var(--color-text);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}









/* Footer */
footer {
    padding: calc(var(--space) / 2) var(--space);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 200;
}

footer a {
    color: var(--color-text);
    text-decoration: none;
    margin-left: 2rem;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.7;
}

/* Language Toggle */
[lang="fr"] .en { display: none; }
[lang="en"] .fr { display: none; }




/* Responsive Design */
@media (max-width: 1024px) {
    .gallery {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: calc(var(--space) / 2);
    }

    .creation:nth-child(1) { grid-column: 1 / span 5; }
    .creation:nth-child(2) { grid-column: 6 / span 3; margin-top: var(--space); }
    .creation:nth-child(3) { grid-column: 2 / span 4; margin-top: calc(var(--space) * -0.5); }
    .creation:nth-child(4) { grid-column: 6 / span 3; margin-top: var(--space); }
}

@media (max-width: 768px) {
    .settings {
        top: auto;
        bottom: var(--space);
    }

    .cursor {
        display: none;
    }

    * {
        cursor: auto !important;
    }

    .gallery {
        grid-template-columns: repeat(6, 1fr);
    }

    .creation:nth-child(1) { grid-column: 1 / span 4; }
    .creation:nth-child(2) { grid-column: 3 / span 4; margin-top: calc(var(--space) * -0.5); }
    .creation:nth-child(3) { grid-column: 1 / span 4; margin-top: var(--space); }
    .creation:nth-child(4) { grid-column: 2 / span 4; margin-top: calc(var(--space) * -0.5); }

    .mobile-only {
        display: inline-block;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    footer nav {
        margin-top: 1rem;
    }

    footer a {
        margin: 0 1rem;
    }
}


/* Base styles */
.bubble-left {
    position: relative;
}



/* Toggle Button Styles */
.menu-toggle {
    border: none;
    background: none;
    cursor: pointer;
    width: 22px;
    height: 16px;
    padding: 0;
    position: relative;
}

.menu-toggle-inner {
    position: relative;
    width: 100%;
    height: 10px;
    display: block;
}

.toggle-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000;
    transition: all 0.32s ease;
}

.toggle-line:first-child {
    top: 0;
}

.toggle-line:last-child {
    bottom: 0;
}













/* Navigation Panel */
.nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 1.04s cubic-bezier(.19,1,.22,1), opacity .48s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.nav-panel.active {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1.04s cubic-bezier(.19,1,.22,1), opacity .48s ease;
}

/* Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Panel Inner Content */
.nav-panel-inner {
    height: 100%;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-header {
    height: 72px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.close-nav {
    width: 18px;
    height: 18px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
}

.close-nav::before,
.close-nav::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #faf9f5;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0);
    transform-origin: center;
    transition: all .32s ease .16s, opacity .16s ease;
}

.nav-panel.active .close-nav::before {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.nav-panel.active .close-nav::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(135deg);
}

/* Navigation Links */
.nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.nav-item {
    margin-bottom: 24px;
}

.menu-link {
    color: #faf9f5;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1.15px;
    text-transform: uppercase;
    display: inline-block;
    transition: opacity 0.24s ease;
}

.menu-link:hover {
    opacity: 0.8;
}

.submenu {
    list-style: none;
    padding-left: 16px;
    margin-top: 12px;
}

.submenu .menu-link {
    font-size: 12px;
    letter-spacing: 0.72px;
}

/* Responsive Styles */
@media screen and (max-width: 480px) {
    .nav-panel {
        max-width: 100%;
    }

    .nav-panel-inner {
        padding: 0 20px;
    }

    .nav-header {
        height: 60px;
    }

    .close-nav {
        width: 16px;
        height: 16px;
    }

    .nav-item {
        margin-bottom: 20px;
    }

    .menu-link {
        font-size: 14px;
    }

    .submenu {
        padding-left: 12px;
        margin-top: 10px;
    }

    .submenu .menu-link {
        font-size: 11px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .nav-panel {
        max-width: 320px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .nav-panel {
        max-width: 380px;
    }
}

/* iOS height fix */
@supports (-webkit-touch-callout: none) {
    .nav-panel {
        height: -webkit-fill-available;
    }
}

/* Small screen scroll fix */
@media screen and (max-height: 600px) {
    .nav-content {
        padding-bottom: 60px;
    }
}


@media (max-width: 1024px) {
.newsletter-container {
    margin-top: 20vh !important;
}

body {
    margin-top:8vh;
}
}

@media (max-width: 768px) {
  .newsletter-container {
    margin-top: 12vh !important;
}

body {
    margin-top:7.5vh;
}

}

@media (max-width: 480px) {
    .newsletter-container {
    margin-top: 9vh !important;
}

body {
    margin-top:7vh;
}
}







.newsletter-container {
    margin-top: 20vh;
    padding-top: 32px;
    position: relative;
}

.signup__input-box {
    border-bottom: 0.5px solid #faf9f5;
    overflow: hidden;
    padding-bottom: 2px;
    position: relative;
    cursor: pointer;
    transition: all 0.24s ease;
}

.signup__input-box input {
    all: unset;
    color: #faf9f5;
    flex: 1 1 100%;
    font-family: 'EuropaGroteskNo2SH-roman', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.5;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.signup__label {
    color: #878787;
    font-size: 12px;
    position: absolute;
    bottom: 2px;
    left: 4px;
    cursor: pointer;
    transition: transform 0.48s cubic-bezier(0.19, 1, 0.22, 1), 
                color 0.24s ease, 
                font-size 0.24s ease;
    pointer-events: none;
}

.signup__cta {
    color: #faf9f5;
    font-size: 12px;
    position: absolute;
    bottom: 2px;
    right: 4px;
    transition: transform 0.48s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.24s ease;
    cursor: pointer;
}

.signup__input-box.active .signup__label {
    transform: translate(-4px, -20px);
    font-size: 10px;
    color: #faf9f5;
    cursor: pointer;
}

.signup__input-box.error .signup__label {
    color: #ff4444;
}


.signup__input-box.active .signup__cta {
    transform: translateY(110%);
    opacity: 0;
}

.signup__submit-button {
    margin-top: 24px;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: height 0.48s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.24s ease;
    /* Ajouter ces propriétés */
    width: 100%;
}

.signup__submit-button.ready {
    height: auto;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    height: 85px;
}

.signup__submit-button button {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0.5px solid #faf9f5;
    color: #faf9f5;
    font-size: 11px;
    letter-spacing: 0.72px;
    padding: 12px 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* Ajouter cette propriété */
    width: 100%;
    height: 85px;
    box-sizing: border-box;
}

.signup__submit-button button:hover:not(:disabled) {
    background-color: rgba(48, 65, 35, 0.66);
    color: #faf9f5;
}

.signup__submit-button button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.signup__submit-button.processing .button-cta {
    opacity: 0;
}

.signup__submit-button.processing .spinner-box {
    transform: translateX(0);
}

.signup__submit-button.processing .button-spinner {
    opacity: 1;
}

.spinner-box {
    aspect-ratio: 1;
    background-color: hsla(48, 33%, 97%, 0.16);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.button-spinner {
    animation: rotation 1s linear infinite;
    border: 2px solid #cecece;
    border-bottom-color: #faf9f5;
    border-radius: 50%;
    display: block;
    height: 32%;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transition: opacity 0.24s ease;
    width: 32%;
}

@keyframes rotation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* Footer */
.nav-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px; /* Remonté légèrement */
}

.accessibility-btn {
    color: #faf9f5;
    background: none;
    border: 1px solid #faf9f5;
    padding: 8px 16px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accessibility-btn:hover {
    background-color: rgba(48, 65, 35, 0.66);
    color: #faf9f5;
}

.nav-copyright {
    color: #878787;
    font-size: 10px;
    letter-spacing: 0.5px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .nav-panel {
        max-width: 360px;
    }
    .nav-panel-inner {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .nav-panel {
        max-width: calc(100vw - 48px);
    }
    .menu-link {
        font-size: 14px;
    }
    .submenu .menu-link {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .nav-panel-inner {
        padding: 0 16px;
    }
    .nav-copyright {
        font-size: 9px;
    }
}




/* accessibilité */

/* Style du bouton d'accessibilité */
.footer-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Bouton d'accessibilité */
.accessibility-btn {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.accessibility-btn:hover {
    opacity: 1;
}

/* Overlay et Modal */
.accessibility-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.accessibility-overlay.active {
    opacity: 1;
    visibility: visible;
}

.accessibility-modal {
    width: 90%;
    max-width: 360px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 27px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.accessibility-overlay.active .accessibility-modal {
    opacity: 1;
    transform: translateY(0);
}

/* En-tête */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
    padding: 8px;
    transition: opacity 0.2s;
}

.close-modal:hover {
    opacity: 1;
}

/* Contenu */
.modal-content {
    padding: 20px;
}

.option-section {
    margin-bottom: 24px;
}

.option-section h3 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

/* Boutons de mode */
.mode-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mode-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.mode-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mode-btn.active {
    background: #fff;
    color: #1c1c1c;
}

/* Boutons de taille */
.size-buttons {
    display: flex;
    gap: 8px;
}

.size-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.size-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.size-btn.active {
    background: #fff;
    color: #1c1c1c;
}

/* Toggles */
.toggle-group {
    display: grid;
    gap: 16px;
}

.toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

/* Switch */
.switch {
    position: relative;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: 0.3s;
    cursor: pointer;
}

.slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .slider {
    background: #fff;
}

input:checked + .slider:before {
    transform: translateX(20px);
    background: #1c1c1c;
}

/* Footer */
.modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reset-btn {
    width: 100%;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.reset-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 480px) {
    .accessibility-modal {
        width: calc(100% - 32px);
    }
    
    .mode-buttons {
        grid-template-columns: 1fr;
    }
}

/* Styles fonctionnels pour l'accessibilité */
.high-contrast {
    filter: contrast(150%);
}

.monochrome {
    filter: grayscale(100%);
}

.invert-images img {
    filter: invert(100%);
}

.reduce-motion * {
    transition: none !important;
    animation: none !important;
}






/* Empêcher le scroll */
/* Désactiver le scroll */
.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Masquer visuellement le panneau lorsque `aria-hidden` est true */
#nav-panel[aria-hidden="true"] {
    display: none;
}

/* Activer le panneau lorsque `aria-hidden` est false */
#nav-panel[aria-hidden="false"] {
    display: block;
}




/*search box*/

button[search-button] {
    background-color: transparent;
    border-width: 0;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    outline: 0;
    padding: 0;
    position: relative
}

button[search-button] svg {
    position: relative;
    top: -1px;
    transform: scale(1.1)
}

button[search-button]:active svg {
    position: relative;
    top: 1px
}

search-box .search__field label {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

search-box .search__field button[type=submit],search-box .search__header>button {
    background-color: transparent;
    border-width: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    outline: 0;
    padding: 0
}

search-box {
    background-color: rgba(0, 0, 0, 0.65); 
    backdrop-filter: blur(10px); /* Frosted glass blur effect */
    -webkit-backdrop-filter: blur(20px); /* Safari support */
    display: flex;
    flex-direction: column;
    height: 100dvh;
    isolation: isolate;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translateY(100%);
    transition: transform 1.04s cubic-bezier(.19,1,.22,1), opacity .48s ease;
    width: 100dvw;
    z-index: 100;
}

search-box[expanded] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform .48s cubic-bezier(.19,1,.22,1), opacity .24s ease;
}

search-box[expanded] .search__header>button:before {
    opacity: 1;
    transform: translate(-50%,-50%) rotate(-135deg)
}

search-box[expanded] .search__header>button:after {
    opacity: 1;
    transform: translate(-50%,-50%) rotate(135deg)
}

search-box .search__header {
    align-items: center;
    display: flex;
    flex: 0 0 72px;
    height: 72px;
    justify-content: flex-end;
    left: 0;
    padding-right: 36px;
    position: fixed;
    top: 0;
    width: 100vw
}

@media (min-width: 768px) {
    search-box .search__header {
        padding-right:58px
    }
}


/* Target both buttons */
.js-primary-nav-btn,
.js-primary-nav-close-btn {
    outline: none; /* Remove default outline */
    border: none; /* Remove default border */
    background-color: transparent;
    cursor: pointer;
    padding: 0;
}

/* Remove outline on focus and active states */
.js-primary-nav-btn:focus,
.js-primary-nav-close-btn:focus,
.js-primary-nav-btn:active,
.js-primary-nav-close-btn:active {
    outline: none; /* Ensure no outline on focus or click */
    box-shadow: none; /* Remove any default box shadow */
}

search-box .search__header>button {
    cursor: pointer;
    height: 18px;
    position: relative;
    width: 18px
}

search-box .search__header>button:after,search-box .search__header>button:before {
    background-color: #faf9f5;
    content: "";
    height: 1px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%) rotate(0);
    transform-origin: center;
    transition: all .32s ease .16s,opacity .16s ease;
    width: 100%
}


search-box .search__header>button:active:after,search-box .search__header>button:active:before,search-box .search__header>button:focus-visible:after,search-box .search__header>button:focus-visible:before,search-box .search__header>button:hover:after,search-box .search__header>button:hover:before {
    transition: all .32s ease,opacity .16s ease;
    width: 100%
}

search-box .search__box {
    align-items: center;
    display: flex;
    flex: 1 1 100%;
    justify-content: center
}

search-box .search__form {
    display: block;
    padding: 0 8%;
    width: 100%
}

@media (min-width: 768px) {
    search-box .search__form {
        padding:0 16%
    }
}

search-box .search__field {
    position: relative
}

search-box .search__field input {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #cecece;
    caret-color: #faf9f5;
    color: #faf9f5;
    display: block;
    font-family: EuropaGroteskNo2SH-roman,sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: .5px;
    line-height: 1.5;
    outline: none;
    padding: 0 40px 8px;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    transition: border-color .24s ease;
    width: 100%;
    z-index: 1
}

@media (min-width: 768px) {
    search-box .search__field input {
        font-size:24px;
        letter-spacing: .64px
    }
}

search-box .search__field input::-webkit-search-cancel-button,search-box .search__field input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none
}

search-box .search__field input::-moz-placeholder {
    color: #faf9f5
}


search-box .search__field input::placeholder {
    color: #faf9f5
}

search-box .search__field input:focus-visible::-moz-placeholder {
    color: transparent
}

search-box .search__field input:focus-visible::placeholder {
    color: transparent
}

search-box .search__field input:not(:-moz-placeholder-shown) {
    border-bottom-color: #faf9f5
}

search-box .search__field input:focus-visible,search-box .search__field input:not(:placeholder-shown) {
    border-bottom-color: #faf9f5
}

search-box .search__field button[type=submit] {
    bottom: 4px;
    color: #faf9f5;
    cursor: pointer;
    height: 100%;
    position: absolute;
    right: 8px;
    text-align: right;
    width: 29px;
    z-index: 3
}




/* LANG PLACEMENT*/

.lang-placement {
    display: flex;
    justify-content: center;
    padding-bottom: 15px;

}




/* section 1*/

/* styles.css */

/* Base styles - Mobile first (< 640px) */
.hero-section {
  min-height: 100vh;
  width: 100%;
  background-color: #ede9e5;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

main {
padding: 0 !important;
}

.section-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #d1d1d1;
  font-size: 0.75rem;
  font-weight: 300;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 6rem);
}

/* Zone de texte */
.text-zone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  padding-left: 0rem;
  order: 1;
}

.studio-text {
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: #000;
  display: block;
  margin-bottom: 0.5rem;
}

.maroquinerie-text {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
  position: relative;
}

.sur-mesure {
  font-weight: 300;
}

.circle-accent {
  position: absolute;
  right: -1rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #34d399;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

/* Zone image */
.image-zone {
  position: relative;
  height: 50vh;
  order: 2;
}

.main-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

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



.fragment-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #171717;
}

.line-1 {
  top: 25%;
  transform: rotate(-6deg);
}

.line-2 {
  top: 50%;
  transform: rotate(3deg);
}

.accent-circle-1 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 3rem;
  height: 3rem;
  background-color: #fb7185;
  border-radius: 50%;
  mix-blend-mode: multiply;
  opacity: 0.8;
}

/* Small devices (SM): 640px and up */
@media (min-width: 640px) {
  .hero-section {
    padding: 1.5rem;
    min-height: calc(100vh - 2rem);
  }
  
  main {
    padding: var(--space) !important;
}


  .section-number {
    top: 1.5rem;
    left: 1.5rem;
    font-size: 0.875rem;
  }

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

  .maroquinerie-text {
    font-size: 4rem;
  }

  .circle-accent {
    width: 3rem;
    height: 3rem;
  }

  .accent-circle-1 {
    width: 4rem;
    height: 4rem;
  }
}

/* Medium devices (MD): 768px and up */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
     margin-top: -15vh;
  }

  .text-zone {
    grid-column: span 6;
    order: 1;
    padding-left: 2rem;
    justify-content: flex-end;
  }
  
  .studio-text {
    font-size: 1.25rem;
    letter-spacing: 0.2em;
  }

  .image-zone {
    grid-column: span 6;
    height: auto;
    order: 2;
  }

  .maroquinerie-text {
    font-size: 2.75rem;
  }

.sur-mesure {
    font-size: 2.3rem;
  }

  .main-image-container {
    position: absolute;
    top: 67%;
    transform: translateY(-50%);
    right: 0;
    width: 90%;
    height: 60%;
  }
}

@media (min-width: 980px) {
      .maroquinerie-text {
    font-size: 3.5rem;
  }
  .sur-mesure {
    font-size: 3rem;
  }
}

/* Large devices (LG): 1024px and up */
@media (min-width: 1154px) {
  .hero-section {
    margin-top: 0vh;
  }

  .text-zone {
    grid-column: span 5;
    padding-left: 0rem;
    justify-content: flex-end;
    
  }

  .image-zone {
    grid-column: span 7;
  }

  .studio-text {
    font-size: 1.25rem;
    letter-spacing: 0.2em;
  }

  .maroquinerie-text {
    font-size: 3.75rem;
  }

.sur-mesure {
    font-size: 3.5rem;
  }

  .circle-accent {
    width: 4rem;
    height: 4rem;
    right: -2rem;
  }

  .accent-circle-1 {
    width: 6rem;
    height: 6rem;
    bottom: 25%;
    left: 25%;
  }
}

/* Extra Large devices (XL): 1280px and up */
@media (min-width: 1280px) {
  .hero-section {
    margin-top: 0vh;
  }



  .text-zone {
    padding-left: 0rem !important;
    justify-content: flex-end;
   
  }

  .maroquinerie-text {
    font-size: 4.5rem;
  }
  
  .sur-mesure {
    font-size: 3.5rem;
  }

  .main-image-container {
    width: 80%;
  }

  .circle-accent {
    width: 5rem;
    height: 5rem;
    right: -2.5rem;
  }

  .accent-circle-1 {
    width: 8rem;
    height: 8rem;
  }
}




/* section 4 */

/* CSS */
/* Base styles */
.philo-showcase {
  position: relative;
}

/* Navigation */
.philo-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  z-index: 50;
  mix-blend-mode: difference;
  color: white;
}

.philo-nav-text {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  letter-spacing: 0.1em;
}

/* Grid */
.philo-grid {
  position: absolute;
  overflow:hidden;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  pointer-events: none;
  z-index: 0;
}

.philo-grid-line {
  display:none;
}

/* Common block styles */
.philo-block {
  position: sticky;
  top: 0;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.philo-block.active {
  opacity: 1;
  pointer-events: auto;
}

/* Intro Block */
.philo-intro {
  z-index: 10;
}

.philo-floating-shape {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.philo-circle {
  grid-column: 9 / span 2;
  aspect-ratio: 1;
  position: relative;
}

.philo-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #f87171;
  border-radius: 50%;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.philo-intro-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(1rem, 4vw, 4rem);
}

.philo-title {
  font-size: clamp(2.5rem, 12vw, 12rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.05em;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.philo-dot {
  display: inline-block;
  width: clamp(0.5rem, 1vw, 1rem);
  height: clamp(0.5rem, 1vw, 1rem);
  background: #4ade80;
  border-radius: 50%;
  margin-left: clamp(0.5rem, 1vw, 1rem);
  vertical-align: top;
}

.philo-subtitle {
  margin-left: clamp(1rem, 8vw, 8rem);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 32rem;
}

/* Manifesto Block */
.philo-manifesto {
  z-index: 20;
}

.philo-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index:1;
}

.philo-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover; /* Ceci assurera que l'image couvre tout l'espace */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.philo-manifesto-wrapper {
  height: 100vh;
  padding: clamp(1rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
}

@media (max-width: 768px) {
  .philo-manifesto-wrapper {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
}

.philo-manifesto-content {
  grid-column: 2 / span 6;
}

@media (max-width: 768px) {
  .philo-manifesto-content {
    grid-column: 1 / -1;
  }
}

.philo-manifesto-item {
  position: relative;
  margin-bottom: clamp(2rem, 8vw, 8rem);
}

.philo-item-number {
  position: absolute;
  left: clamp(-2rem, -3vw, -1rem)
  top: 0;
  opacity: 0.2;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 200;
}

@media (max-width: 480px) {
  .philo-item-number {
    position: relative;
    left: 0;
    margin-bottom: 1rem;
  }
}

.philo-item-title {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  font-weight: 200;
}

.philo-item-text {
  font-size: clamp(1rem, 1.125vw, 1.125rem);
  max-width: 28rem;
  line-height: 1.75;
  transition: opacity 0.3s;
  opacity: 0.6;
}

.philo-visual {
  grid-column: 8 / span 4;
  height: 70vh;
  background: #f3f4f6;
  position: relative;
}

@media (max-width: 768px) {
  .philo-visual {
    display:none !important;
  }
}

.philo-moving-circle {
  position: absolute;
  width: clamp(4rem, 6vw, 6rem);
  height: clamp(4rem, 6vw, 6rem);
  background: #4ade80;
  border-radius: 50%;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: all 0.5s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index:2;
}

/* Action Block */
.philo-action {
  z-index: 30;
}

.philo-action-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1rem, 2vw, 2rem);
  padding: 0 clamp(1rem, 4vw, 4rem);
}

.philo-action-wrapper p {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 300;
  line-height: 1.75;
  max-width: 56rem;
}

.philo-btn {
  position: relative;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  font-size: clamp(0.75rem, 0.875vw, 0.875rem);
  letter-spacing: 0.1em;
  background: none;
  border: none;
  cursor: pointer;
}

.philo-btn-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: black;
  transition: width 0.3s;
}

.philo-btn:hover .philo-btn-line {
  width: 100%;
}

.philo-scroll-space {
  height: 100vh;
}

/* Mobile optimizations */
@media (max-width: 480px) {
  .philo-nav {
    padding: 1rem;
  }

  .philo-intro-content {
    padding: 0 1rem;
  }

  .philo-manifesto-list {
    padding: 0 1rem;
  }

  .philo-visual {
    margin: 2rem 1rem;
  }
}


