﻿/* 
Theme Name: Kevin Hipke
Author: Kevin Hipke
Author URI: http://kevinhipke.com/
Description: Theme developed for Kevin Hipke
Version: 1.0
Tags: blog, Kevin Hipke, design, custom-theme 
*/

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
    --font-family-primary: 'soehne-web', sans-serif;
    
    /* Optimized Font Scale - Only 6 core sizes */
    --font-size-xs: 0.75rem;    /* 12px - captions, fine print */
    --font-size-sm: 0.875rem;   /* 14px - small text, tags, buttons */
    --font-size-base: 1rem;     /* 16px - body text */
    --font-size-lg: 1.25rem;    /* 20px - large body, small headings */
    --font-size-xl: 1.75rem;    /* 28px - medium headings */
    --font-size-2xl: 2.5rem;    /* 40px - large headings */
	--font-size-3xl: 4rem;    /* 40px - large headings */
    
    /* Special display sizes - only when needed */
    --font-size-display: clamp(3rem, 8vw, 8rem);     /* Responsive display text */
    --font-size-hero: clamp(8rem, 20vw, 20rem);      /* Homepage hero */

    --line-height-extratight: 1;
    --line-height-tight: 1.1;
    --line-height-base: 1.5;
    --line-height-relaxed: 1.7;
    
    /* Font weights */
	font-family: 'soehne-web', sans-serif;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    /* Colors */
    --color-primary: rgba(22, 22, 22, 1);
    --color-white: white;
    --color-glass-bg: rgba(245, 245, 245, 0);
    --color-glass-border: rgba(65, 65, 65, 0.4);
    --color-border-light: rgba(22, 22, 22, 0.2);
    
    /* Spacing */
    --spacing-xs: 0.5em;
    --spacing-sm: 1em;
    --spacing-md: 1.5em;
    --spacing-lg: 2em;
    --spacing-xl: 2.5em;
    
    /* Border radius */
    --border-radius-pill: 9999px;
    --border-radius-card: clamp(10px, 1.04vw, 20px);
    
    /* Blur effects */
    --blur-light: blur(10px);
    --blur-heavy: blur(15px);
    
    /* Transitions */
    --transition-fast: 0.25s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-extra-slow: 1s ease-out;
}

/* ========== FONTS ========== */
@font-face {
    font-family: soehne-web-buch;
    src: url(../../../fonts/soehne-web-buch.eot);
    src: url(../../../fonts/soehne-web-buch-1.eot) format('embedded-opentype'),
         url(../../../fonts/soehne-web-buch.woff2) format('woff2'),
         url(../../../fonts/soehne-web-buch.woff) format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
 	font-family: 'Söhne Kräftig';
  	src: url('../../../fonts/soehne-kraftig.woff2') format('woff2');
  	font-weight: 700;
  	font-style: normal;
  	font-display: swap;
}



/* ========== RESET & BASE STYLES ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    -webkit-font-kerning: normal;
    font-kerning: normal;
    word-break: normal;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-normal);
    font-style: normal;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

body {
    margin: 0 auto;
    padding: 0 !important;
    -ms-overflow-style: none;
    line-height: var(--line-height-base);
    overflow-x: hidden;
    transition: background-color 0.6s ease;
}

.clear::after {
    clear: both;
    display: block;
    content: '';
}

.overflow_hidden {
    overflow: hidden !important;
}

.page-wrapper {
    transition: filter 0s ease;
}

.page-wrapper.scrolling {
    filter: blur(2px);
}

/* ========== TYPOGRAPHY HIERARCHY ========== */
h1 {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-normal);
    margin: 0 0 1rem 0;
}

h2 {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.5px;
    margin: 0 0 0.75rem 0;
}

h3 {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-normal);
    margin: 0 0 0.5rem 0;
}

h4 {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-normal);
    margin: 0 0 0.5rem 0;
}

h5 {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-normal);
    margin: 0 0 0.5rem 0;
}

h6 {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-normal);
    margin: 0 0 0.5rem 0;
}

/* Keep original font-weight overrides */
h1,
h3,
h4,
h5,
h6,
b,
strong,
label {
    font-weight: normal;
}

a {
    color: var(--color-white);
    text-decoration: none;
    cursor: pointer;
}

b,
strong {
    font-weight: bold;
}

button:hover,
a:hover,
input[type="submit"]:hover {
    opacity: 0.95;
    transition: all var(--transition-medium);
}

/* ========== UTILITY CLASSES ========== */
.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-display { font-size: var(--font-size-display); }
.text-hero { font-size: var(--font-size-hero); }

.font-normal { font-weight: var(--font-weight-normal); }
.font-bold { font-weight: var(--font-weight-bold); }
.font-black { font-weight: var(--font-weight-black); }

.leading-tight { line-height: var(--line-height-tight); }
.leading-base { line-height: var(--line-height-base); }
.leading-relaxed { line-height: var(--line-height-relaxed); }

/* Legacy class support */
.small,
.caption,
.footer_menu ul li a label {
    font-size: var(--font-size-xs);
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"],
input,
button {
    -webkit-appearance: none;
    box-sizing: border-box;
    border-radius: 0;
    font-size: var(--font-size-base);
    font-family: inherit;
}

/* ========== SCROLLBAR CUSTOMIZATION ========== */
.index_container::-webkit-scrollbar,
.about_container::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar,
.ui-selectmenu-menu .ui-menu::-webkit-scrollbar,
#gallery_cases_class_wrapper::-webkit-scrollbar,
.project_container_credits::-webkit-scrollbar,
textarea::-webkit-scrollbar {
    display: none;
}



/* ========== GLASS EFFECT UTILITY ========== */
.glass-effect {
    background-color: var(--color-glass-bg);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border: 1px solid var(--color-glass-border);
}

.glass-effect-heavy {
    background-color: var(--color-glass-bg);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-light);
    border: 1px solid var(--color-glass-border);
}

/* ========== BUTTON STYLES ========== */
.btn-base {
    display: block;
    border-radius: var(--border-radius-pill);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-tight);
    padding: var(--spacing-xs) var(--spacing-md);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.button_01 {
    float: right;
    background-color: var(--color-glass-bg);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-light);
    border-radius: var(--border-radius-pill);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-tight);
    padding: var(--spacing-xs) var(--spacing-md);
    border: 1px solid rgba(65, 65, 65, 0.4);
}

.button_01:hover {
    color: var(--color-white);
    background: rgba(65, 65, 65, 1);
    cursor: pointer;
}

/* ========== HEADER ========== */
#masthead {
    position: fixed;
    bottom: 1vw;
    z-index: 9999;
}

.logo {
    position: fixed;
    width: auto;
    padding: 1em 2.39vw;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

.logo svg {
    width: 100%;
    height: auto;
}

.logo svg path {
    transition: fill var(--transition-fast);
}

.home .logo svg path {
    fill: var(--color-white) !important;
}

.home #masthead {
    border: none;
    background: transparent;
}

.main_menu {
  position: fixed;
  left: 50%;
	top: 1vw;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 0.2em 0.2em;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--border-radius-pill);

  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  mix-blend-mode: normal;

  border: 1px solid rgba(200, 200, 200, 0.2);
  box-shadow: none;
  transition: background-color 0.3s ease,
}

.main_menu.scrolled {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(180, 180, 180, 0.3);
}

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

.main_menu ul li {
    opacity: 1;
    padding: 0.1em 0.1em;
    border-radius: var(--border-radius-pill);
    display: inline-block;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
	color: rgba(20, 20, 20, 0.85);
}

.main_menu ul li a {
    opacity: 0.5;
    transition: opacity var(--transition-fast);
    display: block;
    padding: 0.75em var(--spacing-md);
    color: var(--color-primary);
    opacity: 100%;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
}

.main_menu ul li a:hover {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-pill);
    padding: 0.75em var(--spacing-md);
    opacity: 1;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    backdrop-filter: brightness(1.05);
    transition: all var(--transition-medium);
}

.main_menu ul li a:after {
    bottom: 1.18vw;
}

/* ========== UNDERLINE EFFECT ========== */
.underline {
    position: relative;
}

.underline:after {
    position: absolute;
    bottom: 0px;
    content: '';
    background: var(--color-white);
    height: 0;
    min-height: 0px;
    width: 0;
    left: 0;
    transition: width var(--transition-fast) linear;
}

.inverted_underline.underline:after {
    width: 100%;
}

/* ========== PAGE STRUCTURE ========== */
#page {
    min-height: 100vh;
}

.hide_news #page {
    padding-top: 0vw !important;
}

/* ========== HOMEPAGE ========== */

.homepage_intro_container{
    padding-bottom: 7.5vh;
	
    width: 100%;
    margin-left: 0.695vw;
    margin-right: 0.695vw;
	
}

.homepage_intro_headline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: solid 1px var(--color-border-light);
    padding-top: 5vh;
}

.project_intro_container{
      width: 100%;
	  margin-top: 2vw;
	padding-bottom: 1vw;
	  display: flex;
	  justify-content: center;
	  align-items: center;
}

.homepage_intro_headline_text {
    max-width: 50%;
    display: block;
}

.homepage_intro_copy, .index_header_name_container {
    display: block;
    height: auto;
	container-type: inline-size;
}

.homepage_intro_copy h2, .index_header_name h2{
    font-size: 11.88cqw; /* 15% of container width */
    margin: 0;
    font-weight: var(--font-weight-bold);
    white-space: nowrap;
    line-height: var(--line-height-tight);
    letter-spacing: -0.03em;
    width: 100%;
}

.project_intro_copy{
	text-align: left;
  width: 100%;
}

.project_intro_copy h2.fit-heading {
  display: inline-block;
  white-space: nowrap;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
	letter-spacing: -0.03em;
}

.index_header_name_container{
	margin: 0 ;
	padding: 1vw 1vw 0 1vw;
}

.index_header_name {
 	display: flex;
  	justify-content: space-between;
  	align-items: center;
}

.index_header_name img {
  	
  	display: inline-block;
}

.index_header_name img:nth-child(2){
	text-align: right;
}

/* ========== FOOTER ========== */
#colophon {
    width: 100%;
    display: block;
    padding: 0;
}

#colophon::after {
    content: "";
    display: table;
    clear: both;
}

.footer_container {

    margin: 1vw;
    width: 100%;
    max-width: calc(100% - 2vw);
    float: left;
    border-radius: var(--border-radius-card);
	


    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	
	opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.footer_container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

#colophon a {
    color: var(--color-primary);
}

.footer_wordmark {
    max-width: 100%;
    padding: 0;
}

.footer_wordmark img {
    max-width: 100%;
    width: auto;
    display: block;
    padding: 2vw 2vw 4vw 2vw;
    box-sizing: border-box;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    align-items: center;
    padding: 40px 40px 30px 40px;
    list-style: none;
    margin: 0;
}

.footer-nav li {
    margin-right: 10px;
    list-style-type: none;
}

.footer-nav li:last-child {
    margin-left: auto;
}

.footer-nav_button {
    background-color: var(--color-glass-bg);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-light);
    border-radius: var(--border-radius-pill);
    padding: 0.25em var(--spacing-md);
    border: 1px solid var(--color-glass-border);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
}

.footer-nav_button:hover {
    color: var(--color-white) !important;
    background: rgba(65, 65, 65, 1);
    cursor: pointer;
}

/* ========== GRID LAYOUT ========== */
.main_grid_container {
    padding: 3.17vw 2.39vw;
    margin-top: 0;
    
    position: relative;
   
    flex-wrap: wrap;
    margin-left: -0.695vw;
    margin-right: -0.695vw;
}

.main_grid_container .main_grid {
    width: 100% !important;
}

.main_grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.main_grid .grid_item {
    width: calc(33.3333% - 1.39vw);
    margin: 0 0.695vw 1.39vw;
    box-sizing: border-box;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.97);
    transition: transform var(--transition-extra-slow), opacity var(--transition-extra-slow);


}



.main_grid::after {
    content: "";
    display: table;
    clear: both;
}



.main_grid_container .main_grid .grid_item a {
    display: block;
}

.grid_item_image {
    border-radius: 0.5vw;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    isolation: isolate;
}

.grid_item_image img {
    display: block;
    width: 100%;
}

.grid_item_image_ob {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: filter var(--transition-fast), transform var(--transition-slow);
}

.grid_item_footer {
    position: absolute;
    float: left;
    margin: 20px;
    bottom: 0;
    width: 100%;
    font-size: var(--font-size-sm);
    transition: opacity var(--transition-fast);
}

.grid_item_title,
.grid_item_excerpt {
    background-color: var(--color-glass-bg);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-light);
    border-radius: var(--border-radius-pill);
    margin-right: 10px;
    padding: var(--spacing-xs) var(--spacing-md);
    padding: 20px;
    float: left;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
}

.grid_item_excerpt {
    color: rgba(245, 245, 245, 0.6);
    font-weight: var(--font-weight-normal);
    opacity: 0.8;
}

.view_project_cursor {
    position: absolute;
    display: none;
    z-index: 10;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    pointer-events: none;
    background-color: var(--color-glass-bg);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-light);
    border-radius: var(--border-radius-pill);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-tight);
    padding-top: 8%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: var(--color-white);
    white-space: nowrap;
}




/* ========== VIDEO ELEMENTS ========== */
.main_grid_container .main_grid .grid_item a .grid_item_image video,
.has_video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 101%;
    height: 101%;
    object-fit: cover;
    transform: scale(0.9);
    transition: transform 1.5s ease-out;
    transform-origin: center center;
}

.project_image_container video{
	transform: scale(1);
	top: 0;
	left: 0;
}

.grid_item_image video{
	transform: scale(1)!important;
	top: 0 !important;
	left: 0 !important;
}

.has_video {
    position: relative;
}

/* ========== FILTER CONTAINER ========== */
.filters_container {
    display: none;
}

.filters_container .filters_container_selector {
    border-bottom: 1px solid var(--color-white);
    height: 50.98px;
    line-height: 50.98px;
    position: relative;
    z-index: 2;
    background: var(--color-primary);
}

.filters_container .filters_container_selector .filter_item {
    position: relative;
    float: left;
    width: 50%;
    border-right: 1px solid var(--color-white);
    padding-left: 26.88px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter_is_open .filters_container .filters_container_selector .filter_item:not(.open) span,
.filter_is_open .filters_container .filters_container_selector .filter_item:not(.open) .select_arrow {
    opacity: 0.3;
}

.filters_container .filters_container_selector .filter_item:last-child {
    border-right: none;
}

.filters_container .filters_container_selector .filter_item .select_arrow {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    right: 30.12px;
    width: 0.76vw;
    height: 0.76vw;
}

.filters_container .filters_container_selector .filter_item .select_arrow svg {
    display: block;
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
    transition: transform var(--transition-fast);
}

.filters_container .filters_container_selector .filter_item .select_arrow svg path {
    transition: all var(--transition-fast);
}

.filters_container .filter_options {
    clear: both;
}

.filters_container .filter_options .filter_labels_container {
    height: 0px;
    overflow: hidden;
    transition: height var(--transition-slow) cubic-bezier(0.56, 0.06, 0, 1);
    top: -1px;
    position: relative;
    background: var(--color-primary);
}

.filters_container .filter_options .filter_labels_container.open {
    transition: height 1s cubic-bezier(0.56, 0.06, 0, 1);
}

.filters_container .filter_options .filter_labels_container:last-child {
    top: -2px;
}

.filters_container .filter_options .filter_labels_container .filter_labels_container_wrapper {
    padding: 9.27px 16.8px;
}

.filters_container .filter_options .filter_labels_container .categories_filters_option {
    background: #000000;
    border: 1px solid var(--color-white);
    border-radius: 10.5vw;
    display: inline-block;
    margin: 4.63px;
    padding: 0 11.59px;
    cursor: pointer;
    line-height: 32.44px;
    transition: background var(--transition-fast), color var(--transition-fast);
    padding-top: 1.75px;
    float: left;
}

.filters_container .filter_options .filter_labels_container .categories_filters_option.active {
    background: var(--color-white);
    color: var(--color-primary);
}

.filters_container .filter_options .filter_labels_container:first-child {
    z-index: 1;
}

.selected_count {
    display: inline-block;
    margin-left: 0.3vw;
    transition: opacity var(--transition-fast);
}

.filters_container .filters_container_selector .filter_item.open .selected_count {
    opacity: 0;
}
/* ========== cookie banner ========== */


/* ========== NEWS SLIDER ========== */
.news_slider_container {
    padding-top: 3.93vw;
    border-bottom: 1px solid var(--color-white);
}

.single-project .news_slider_container,
.page-template-template_intro .news_slider_container,
.page-template-template_intro #colophon {
    display: none;
}

.news_slider_container .news_slider_container_wrapper {
    height: 9.17vw;
    overflow: hidden;
    width: 100%;
}

.news_slider_container .news_slider_container_wrapper .swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.news_slider_container .news_slider_container_wrapper .swiper:after,
.news_slider_container .news_slider_container_wrapper .swiper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 8.33vw;
    z-index: 3;
    pointer-events: none;
}

.news_slider_container .news_slider_container_wrapper .swiper:before {
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.news_slider_container .news_slider_container_wrapper .swiper:after {
    right: 0;
    left: auto;
    background: linear-gradient(-90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-wrapper {
    height: 100%;
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-wrapper .swiper-slide {
    position: relative;
    padding: 1.14vw 1.5vw 1.14vw 2.5vw;
    height: 100%;
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-wrapper .swiper-slide .news_item {
    display: block;
    height: 100%;
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-wrapper .swiper-slide .news_item .news_item_container {
    height: 100%;
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-wrapper .swiper-slide .news_item .news_item_container .news_item_image {
    float: left;
    height: 100%;
    width: 6.9vw;
    background-size: cover;
    background-position: center;
    border-radius: 0.5vw;
    overflow: hidden;
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-wrapper .swiper-slide .news_item .news_item_container .news_item_image .news_item_image_ob {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: filter var(--transition-fast), transform var(--transition-slow);
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-wrapper .swiper-slide .news_item .news_item_container .news_item_text {
    line-height: 1.53vw;
    width: auto;
    overflow: hidden;
    padding-left: 1.1vw;
    padding-bottom: 0.3vw;
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-button-next,
.news_slider_container .news_slider_container_wrapper .swiper .swiper-button-prev {
    width: 1.1vw;
    cursor: pointer;
    display: none;
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-button-next {
    right: 0.5vw;
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-button-prev {
    left: 0.5vw;
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-button-next svg,
.news_slider_container .news_slider_container_wrapper .swiper .swiper-button-prev svg {
    display: block;
    width: 100%;
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-button-next svg {
    transform: rotate(-90deg);
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-button-prev svg {
    transform: rotate(90deg);
}

.news_slider_container .news_slider_container_wrapper .swiper .swiper-button-next:after,
.news_slider_container .news_slider_container_wrapper .swiper .swiper-button-prev:after {
    display: none;
}

/* ========== VALUES SECTION ========== */
.values_container {
    padding: 3.17vw 2.39vw;
}

.main_title {
    margin-bottom: 7.52vw;
}

.main_title p,
.main_title h1,
.main_title h2 {
    margin: 0;
}

.value_item {
    margin-bottom: 5.17vw;
}

.value_item_title {
    width: 42.9vw;
    float: left;
    transition-delay: 0.2s;
}

.value_item_text {
    width: auto;
    overflow: hidden;
    line-height: 125%;
}

.value_item_text p {
    margin: 0;
}

/* ========== CONTACT SECTION ========== */
.contact_container {
    padding: 3.17vw 2.39vw;
}

.contact_details_item {
    margin-bottom: 7.52vw;
    border-top: solid 1px var(--color-border-light);
}

.contact_details_item:last-child {
    margin: 0;
}

.contact_details_main_title {
    width: 42.9vw;
    float: left;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    padding-right: 3vw;
    margin-bottom: 0;
    transition-delay: 0.2s;
    padding-top: 1.38vw;
}

.contact_details_text {
    width: auto;
    overflow: hidden;
    padding-top: 1.38vw;
}

.contact_details_column {
    width: 100%;
    float: left;
    padding-right: 11vw;
}

.contact_details_column1 {
    width: 100%;
}

.contact_details_column p {
    opacity: 0;
}

.contact_details_column strong {
    font-weight: normal;
}

.contact_details a {
    color: var(--color-primary);
    display: block;
    float: left;
    background-color: var(--color-glass-bg);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-light);
    border-radius: var(--border-radius-pill);
    margin-right: 0.5vw;
    font-size: var(--font-size-sm);
    color: rgba(22, 22, 22, 0.8);
    margin-bottom: 0.5vw;
    padding: var(--spacing-xs) var(--spacing-md);
    border: 1px solid var(--color-border-light);
}

/* ========== PROJECT PAGES ========== */
.project_container {
    padding: 2.5vw 2.41vw 0 2.41vw;
}

.section_color{
	font-size: var(--font-size-xl);
	line-height: var(--line-height-tight)
}

.project_container .project_hero_container {
    height: 51.17vw;
    position: relative;
    overflow: hidden;
    border-radius: 0.5vw;
    margin-bottom: 10px;
}

.project_container .project_hero_container .project_hero_image {
    height: 100%;
    background-size: cover;
    background-position: center;
}

.project_body {
    padding-bottom: 2.5vw;
    padding-top: 2.5vw;
}

.project_title {
    padding: 1.86vw 0 1.52vw 0;
    display: none;
}

.project_credits {
    width: 32vw;
    float: left;
    padding-right: 3vw;
    margin-top: 0.6vw;
}

.project_credit_item {
    margin-bottom: 1em;
}

.project_credit_title {
	color: var(--color-primary) !important;
    font-size: var(--font-size-xl);
	line-height: var(--line-height-tight)
	
}

.project_credit_title a {
    color: var(--color-primary) !important;
}

.project_main_content {
    padding: 1vw 0;
}

.project_main_text {
    width: auto;
    overflow: hidden;
    padding-right: 20vw;
}

.project_image {
    position: relative;
    overflow: hidden;
    border-radius: 0.5vw;
    margin-bottom: 10px;
}

.project_image img {
    display: block;
    width: 100%;
}

/* Project image layouts */
.project_two_images .project_image_container {
    float: left;
    width: 50%;
}

.project_two_images .project_image_container:first-child {
    padding-right: 5px;
}

.project_two_images .project_image_container:last-child {
    padding-left: 5px;
}

.project_three_images .project_image_container {
    float: left;
    width: 33.33%;
}

.project_three_images .project_image_container:nth-child(1) {
    padding-right: 10px;
}

.project_three_images .project_image_container:nth-child(2) {
    padding-right: 2.5px;
    padding-left: 2.5px;
}

.project_three_images .project_image_container:nth-child(3) {
    padding-left: 10px;
}

.project_four_images .project_image_container {
    float: left;
    width: calc((100% - 6.21vw)/4);
}

.project_four_images .project_image_container:nth-child(1),
.project_four_images .project_image_container:nth-child(2),
.project_four_images .project_image_container:nth-child(3) {
    margin-right: 2.07vw;
    padding: 0;
}

.project_four_images .project_image_container:nth-child(4) {
    margin-right: 0;
    padding: 0;
}

/* ========== RELATED PROJECTS ========== */
.related_projects {
    padding: 0 0.7vw;
    border-top: solid 1px var(--color-border-light);
}

.related_projects_title {
    padding-left: 1.73vw;
    padding-top: 2.5vw;
}

.related_projects .main_grid_container {
    padding-top: 2.5vw;
}

/* ========== ANIMATION EFFECTS ========== */
.fade_delay1 {
    transition-delay: 0.25s;
}

.fade_delay2 {
    transition-delay: 0.50s;
}

.fade_delay3 {
    transition-delay: 0.75s;
}



#content,
#colophon {
    transition: opacity var(--transition-fast);
}


.block_show_effects .main_grid_container .main_grid .grid_item a {
    transition: unset !important;
}

[data-aos=fade-up] {
    transform: translate3d(0, 100px, 0);
}

[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos][data-aos],
body[data-aos] {
    transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0);
}

.isotope-inactive a .grid_item_image {
    filter: blur(0.5vw);
}

.isotope-inactive a .grid_item_footer {
    opacity: 0.2;
}

/* ========== NEWSLETTER ========== */
.newsletter_module {
    width: 30.97vw;
    padding-bottom: 4.68vw;
}

.newsletter_module .newsletter_form_container .newsletter_form_content form .newsletter_content .newsletter_form_inputs {
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 0.6vw;
}

.newsletter_module .newsletter_form_container .newsletter_form_content form .newsletter_content .newsletter_form_inputs .newsletter_form_input_container {
    display: inline-block;
}

.newsletter_module .newsletter_form_container .newsletter_form_content form .newsletter_content .newsletter_form_inputs .newsletter_form_input_container.newsletter_email_container {
    float: left;
    width: calc(100% - 7vw);
}

.newsletter_module .newsletter_form_container .newsletter_form_content form .newsletter_content .newsletter_form_inputs .newsletter_form_input_container.newsletter_email_container input {
    border: none;
    background: transparent;
    padding: 0;
    color: var(--color-white);
    width: 100%;
    font-size: var(--font-size-base);
}

.newsletter_module .newsletter_form_container .newsletter_form_content form .newsletter_content .newsletter_form_inputs .newsletter_form_input_container.submit_input_container {
    float: right;
    width: 7vw;
}

.newsletter_module .newsletter_form_container .newsletter_form_content form .newsletter_content .newsletter_form_inputs .newsletter_form_input_container.submit_input_container input {
    border: none;
    background: transparent;
    padding: 0;
    color: var(--color-white);
    width: 100%;
    text-align: right;
    cursor: pointer;
    font-size: var(--font-size-base);
}

.newsletter_module .newsletter_form_container .newsletter_form_content form .newsletter_content .newsletter_form_inputs .newsletter_form_input_container.submit_input_container input:disabled {
    opacity: 0.5;
    cursor: default;
}

.newsletter_title {
    margin-bottom: 1.6vw;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
}

.newsletter_thanks_wrapper {
    position: absolute;
    color: #02B55E;
    margin-top: 0.76vw;
    transition: opacity var(--transition-fast);
    opacity: 0;
}

.newsletter_thanks_wrapper.visible {
    opacity: 1;
}

.newsletter_error {
    position: absolute;
    color: #F4BA27;
    margin-top: 0.76vw;
    transition: opacity var(--transition-fast);
    opacity: 0;
}

.empty_error .newsletter_error,
.invalid_email .newsletter_error {
    opacity: 1;
}

/* Input placeholders */
.newsletter_module .newsletter_form_container .newsletter_form_content form .newsletter_content .newsletter_form_inputs .newsletter_form_input_container input::placeholder,
.newsletter_module .newsletter_form_container .newsletter_form_content form .newsletter_content .newsletter_form_inputs .newsletter_form_input_container input:-ms-input-placeholder,
.newsletter_module .newsletter_form_container .newsletter_form_content form .newsletter_content .newsletter_form_inputs .newsletter_form_input_container input::-ms-input-placeholder,
.newsletter_module .newsletter_form_container .newsletter_form_content form .newsletter_content .newsletter_form_inputs .newsletter_form_input_container input::-webkit-input-placeholder {
    opacity: 0.5;
    color: var(--color-white);
}

/* ========== SHOP SECTION ========== */
.shop_header {
    position: relative;
    height: 100vh;
    max-width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
    margin: 0;
}

.shop_header_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin: 2.39vw;
    padding: 1vw 0 0 0;
    z-index: 2;
    border-top: solid 1px var(--color-white);
    transition: transform 0.05s ease-out;
}

.shop_header_left,
.shop_header_right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.shop_header_right {
    padding-right: 10vw;
}

.shop_headline {
    margin-bottom: 1rem;
}

.shop_extra_copy {
    line-height: var(--line-height-tight);
    color: rgba(255, 255, 255, 1);
    font-weight: var(--font-weight-bold);
    margin-bottom: 2rem;
    font-size: var(--font-size-xl);
}

.shop_extra_copy p,
.shop_extra_copy h2,
.shop_extra_copy h3,
.shop_extra_copy h1 {
    margin: 0;
}

.shop_subheader {
    line-height: 1;
    display: inline-block;
    background-color: var(--color-glass-bg);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-light);
    border-radius: var(--border-radius-pill);
    padding: var(--spacing-xs) var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px;
    text-align: left;
    width: auto;
    flex: 0 0 auto;
    font-size: var(--font-size-sm);
    line-height: var(--line-height-tight);
}

.shop_subheader:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.bg_video {
    position: absolute;
    z-index: 2;
    width: 100%;
}

/* ========== QUOTE MODULE ========== */
.quote_module {
    padding: 3.17vw 2.39vw;
    padding-bottom: 5vw;
    max-width: 100%;
}

#bottom_quote{
	display: flex;
	flex-direction: row; /* horizontal layout */
	background: rgba(255, 255, 255, 0.6);
	margin: 1vw;
	padding-bottom: 2.39vw;
	border-radius: var(--border-radius-card);
}

#first_quote {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 0;
    margin-top: 0;
    gap: 40px;
    padding-bottom: 5.5vw;
}

#second_quote {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 0;
    margin-top: 0;
    gap: 40px;
    padding-bottom: 5.5vw;
	border-top: solid 1px var(--color-border-light);
}

.quote_list {
    float: left;
    display: block;
    width: 100%;
    font-size: var( --font-size-2xl );    /* 40px - large headings */
    line-height: var(--line-height-tight);
    border-top: solid 1px black;
    padding: 2vh 0;
}

.quote_list:nth-last-child(2){
    border-bottom: solid 1px black;
}

.small_quote {
	width: 50%;
}

.large_quote {
	width: 70%;
}

#quote_module_full {
    width: 100%;

    text-align: center;
}

.quote_heading p{
	margin: 0 !important;
}

.large_quote .categories_filters_option {
    margin-bottom: 1.5rem;
    color: #333;
}

.categories_filters_option {
    padding: 0;
}

.quote_heading {
    display: block;
    margin: 0 0 1.5rem 0;
    padding: 0;
    color: #333;
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-extratight);
    font-weight: var(--font-weight-black);
	letter-spacing: -0.1rem;
    padding-right: 10vw;
}

.quote_heading h2 {
    margin: 0 0 1.5rem 0;
}

.large_quote button {
    background: transparent;
    border: 1px solid #111;
    padding: 0.6rem 1.4rem;
    font-size: var(--font-size-base);
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: all var(--transition-medium);
    margin-top: 1rem;
}

.large_quote button:hover {
    background-color: #111;
    color: var(--color-white);
}

/* ========== INDEX VIDEO INTRO ========== */

.index_header_video {
    position: relative;
    height: calc(100vh - 5.69vw);
    max-width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--color-white);
    overflow: hidden;
    margin: 1vw;
    /*margin-top: calc(2vw + 47px);*/
    margin-bottom: 1.39vw;
    border-radius: var(--border-radius-card);
    z-index: 1;
}

.scale-animation {
    transform: scale(0.7);
    transition: transform 1.5s ease-out;
}

.index_header_video .bg_video,
.index_header_video .bg_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.index_header_video_text {
    padding: 1.25vw;
    position: absolute;
    bottom: 0;
    width: 40vw;
}

.index_header_video_intro, .index_header_video_headline{
	margin-bottom: 2.25vh;
}

.index_header_video_headline {
    color: var(--color-white);
}

.index_header_video_headline h1 {
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.01em;
    line-height: var(--line-height-tight);
    font-size: var(--font-size-2xl);
}

.tag {
    display: block;
    float: left;
    background-color: var(--color-glass-bg);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-light);
    border-radius: var(--border-radius-pill);
    margin-right: 0.8vw;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-tight);
    padding: var(--spacing-xs) var(--spacing-md);

}

#contact_tag{
	position: fixed;
	color: var(--color-dark);
	font-weight: var(--font-weight-normal);
	bottom: 1vw;
	margin-left: 2vw;
	z-index: 999;
	
	background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  mix-blend-mode: normal;

  border: 1px solid rgba(200, 200, 200, 0.2);
  box-shadow: none;
  transition: background-color 0.3s ease,
}

/* ========== GLOBAL CURSOR DOT ========== */
#custom_cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--color-white);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width var(--transition-medium), 
                height var(--transition-medium), 
                background var(--transition-medium), 
                padding var(--transition-medium), 
                opacity var(--transition-medium);
    mix-blend-mode: difference;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 1;
}

#custom_cursor .cursor_label {
    opacity: 0;
    font-size: 0px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    transition: opacity 0.2s ease, font-size 0.2s ease;
    white-space: nowrap;
    pointer-events: none;
}

#custom_cursor.hovering-project {
    width: auto;
    height: auto;
    background-color: var(--color-glass-bg);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-heavy);
    border-radius: var(--border-radius-pill);
    padding: var(--spacing-xs) var(--spacing-md);
    mix-blend-mode: normal;
}

#custom_cursor.hovering-project .cursor_label {
    opacity: 1;
    font-size: var(--font-size-sm);
}

/* ========== ACCESSIBILITY IMPROVEMENTS ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .scale-animation {
        transform: none;
    }
    
    .grid_item {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles for accessibility - only show for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

/* Remove default focus styles for mouse clicks */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
    outline: none;
}

/* ========== MOBILE OPTIMIZATION ========== */
@media screen and (max-width: 768px) {
   
    
    html,
    body {
        margin: 0;
        padding: 0;
        max-width: 100dvw;
    }

    body {
        line-height: var(--line-height-base);
    }

      .text-xs { font-size: 0.6875rem; }    /* ~11px */
	  .text-sm { font-size: 0.75rem; }      /* 12px */
	  .text-base { font-size: 0.875rem; }   /* 14px */
	  .text-lg { font-size: 1rem; }         /* 16px */
	  .text-xl { font-size: 1.25rem; }      /* 20px */
	  .text-2xl { font-size: 1.5rem; }      /* 24px */
	  .text-display { font-size: clamp(2rem, 8vw, 5rem); }
	  .text-hero { font-size: clamp(4rem, 15vw, 10rem); }

    /* Component adjustments */
    .button_01,
    .footer-nav_button,
    .grid_item_title,
    .grid_item_excerpt,
    .tag {
        font-size: 0.8125rem; /* 13px */
    }

    .grid_item_excerpt {
        display: none;
    }

    .logo {
        display: none !important;
    }

    #custom_cursor {
        display: none !important;
    }
	
	.page-wrapper.scrolling {
		filter: blur(0px);
	}
	
	/* navigation */
	
	.main_menu {
		position: fixed;
  		bottom: 10dvw !important;
  		top: auto !important;
  		left: 50%;
  		transform: translateX(-50%);
  		padding: 0.2em 0.2em;
 		 white-space: nowrap; /* ✅ keeps items on one line */
	}
	
	.index_header_name_container{
		padding: 5dvw 5dvw 0 5dvw;
	}

    .index_header_video {
        position: relative;
        height: 86dvh;
        width: 90dvw;
        margin: 5dvw;
		border-radius: 20px;
        padding: 0;
    }

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

    .index_header_video_text {
        width: 100%;
        padding: 5vw;
        padding-top: 70px;
    }

    .shop_header {
        height: 100dvh !important;
        max-height: 100dvh;
    }

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

    .shop_header_content {
        flex-direction: column;
        gap: 2rem;
        position: absolute;
        bottom: 0;
        width: 90vw;
        margin-left: 5vw;
        padding: 5vw 0 10vw 0;
    }

    .shop_header_left,
    .shop_header_right {
        width: 100%;
        padding-right: 0;
    }

    .shop_extra_copy {
        font-size: var(--font-size-lg);
        margin-bottom: 1rem;
    }

    .shop_subheader {
        font-size: 0.9375rem; /* 15px */
        padding: var(--spacing-xs) 1.2em;
        margin-bottom: 0.5em;
    }
	
	.homepage_intro_container{
		padding-bottom: 5dvw;
	}

    .homepage_intro_headline {
		padding-top: 5dvw;
		padding-bottom: 5dvw;
    }

    .homepage_intro_headline_text {
        width: 100%;
        margin-top: 1rem;
    }

    .main_grid_container {
        padding: 5dvw 5dvw;
        margin-top: 5vh;
        margin-bottom: 15vh;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        margin: 0;
    }

    .main_grid_container .main_grid {
    }

    .main_grid {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .main_grid .grid_item {
        width: 100%;
        margin: 0;
		margin-bottom: 5dvw;
        box-sizing: border-box;
        border-radius: 20px;
        overflow: hidden;
        opacity: 0;
        transform: scale(0.97);
        transition: transform var(--transition-extra-slow), opacity var(--transition-extra-slow);
    }

    .grid_item_image {
        border-radius: 50px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        position: relative;
        isolation: isolate;
    }

    .main_grid_container .main_grid .grid_item a .grid_item_image {
        border-radius: 10px !important;
    }

    .quote_module {
        display: flex;
        flex-direction: column;
        padding-left: 5vw;
        padding-right: 10vw;
    }
	
	#quote_module_full {
		width: 100%;
		padding-right: 0vw;
	}

    .small_quote,
    .large_quote {
        width: 100%;
    }

    .quote_heading {
        font-size: var(--font-size-xl);
        line-height: var(--line-height-tight);
        margin-bottom: 1rem;
        padding-right: 0;
    }

    .contact_details_column,
    .contact_details_column2,
    .contact_details_main_title {
        width: 100%;
        padding-right: 0;
        max-width: 100%;
        font-size: var(--font-size-lg);
    }

    .newsletter_module {
        width: 100%;
    }

    .newsletter_form_input_container.newsletter_email_container,
    .newsletter_form_input_container.submit_input_container {
        width: 100%;
        text-align: left;
    }

    .newsletter_form_input_container.submit_input_container input {
        text-align: left;
    }

    .newsletter_module input::placeholder {
        font-size: var(--font-size-sm);
    }

    .grid_item_footer {
        font-size: 0.8125rem; /* 13px */
        padding: 0;
        margin: 3dvw 0;
        width: 100%;
        text-align: center;
    }

    .grid_item_title {
        display: inline-block;
        margin-left: 3dvw;
    }

    .tag {
        font-size: 0.8125rem; /* 13px */
        padding: 0.4em 1.2em;
        margin-bottom: 0.5em;
        margin-right: 0.5em;
         display: none;
    }

    .scale-animation {
        transform: scale(0.7);
        transition: transform 1.5s ease-out;
    }
	
	.footer_container {
		margin: 5dvw;
		width: 100%;
		padding: 5dvw;
		max-width: calc(100% - 10dvw);
		border-radius: 20px;
		float: left;
		margin-bottom: 30dvw;
	}

    .footer_wordmark img {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: block;
    }

    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
		padding-top: 15dvw;
        gap: 12px;
    }

    .footer-nav li {
        margin: 0;
        width: 100%;
    }

    .footer-nav li:last-child {
        margin-left: 0;
    }

    .footer-nav_button {
        display: block;
        text-align: center;
        font-size: var(--font-size-sm);
        padding: 0.75em var(--spacing-md);
        border-radius: var(--border-radius-pill);
    }

    .footer-nav_button:hover {
        background: rgba(65, 65, 65, 1);
        color: var(--color-white);
    }
	
	.contact_container {
		padding: 5dvw;
	}
	
	.contact_details_main_title {
    width: 100%;
    float: left;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    padding-right: 3vw;
    margin-bottom: 0;
    transition-delay: 0.2s;
    padding-top: 1.38vw;
}

	.contact_details_text {
		width: 100%;
		overflow: hidden;
		padding-top: 1.38vw;
	}
	
	.project_credits {
		display:none;
	}
	
	.project_main_text{
		padding:0;
	}
	
	.project_container{
		padding: 5dvw;
	}
	
	.project_images img{
		border-radius: 10px;
	}

}

@supports (-webkit-touch-callout: none) {
  @media screen and (max-width: 1024px) {
    
	  .button_01{color: black !important;}
	  .homepage_intro_copy h2, .index_header_name h2{
		  font-size:11.8cqw;
	  }
  }
}



	blockquote,
	q {
		-webkit-hyphens: none;
		-moz-hyphens:    none;
		-ms-hyphens:     none;
		hyphens:         none;
		quotes: none;
	}
	
	blockquote:before,
	blockquote:after,
	q:before,
	q:after {
		content: "";
		content: none;
	}
	
	blockquote {
		color: #000;
		line-height: 1.6;
		font-size: 1.5rem;
		margin-bottom: 2.1875rem;
		font-weight: 500;
		padding-left: 3.5rem;
		margin: 0 0 1.5625rem;
		position:relative;
	}
	
	.light-content blockquote, .dark-section blockquote {
		color: #fff;
	}
	
	.light-content .light-section blockquote {
		color: #000;
	}
	
	blockquote::before {
		content: "\275D";
		position: absolute;
		left: 0;
		top: 5px;
		line-height: 1;
		font-size: 3rem;
		font-weight: 500;
	}
	
	blockquote cite,
	blockquote small {
		color: #2b2b2b;
		font-size: 16px;
		font-weight: 400;
		line-height: 1.5;
	}
	
	.light-content blockquote cite, .light-content blockquote small {
		color:#fff;
	}
	
	blockquote em,
	blockquote i,
	blockquote cite {
		font-style: normal;
	}
	
	blockquote strong,
	blockquote b {
		font-weight: 600;
	}
	


/*--------------------------------------------------
	Buttons
---------------------------------------------------*/	

	.button-box {
		line-height:16px;
		cursor:pointer;
		border:none;
		box-sizing:border-box;
		text-align:center;
		display:inline-block;
		position:relative;
	}
	
	.text-align-center .button-box, .text-align-center.button-box {
		margin-left:10px;
		margin-right:10px;
		text-align:center;
	}
	
	.text-align-center.button-box {
		display: flex;
		margin:auto
	}
	
	.button-content .submit-box {
		color:#fff;
	}
	
	.clapat-button-wrap {
		display: flex;
		position: relative;
		justify-content: center;
		align-items: center;
		left:0;
		right:0;
		min-width:100px;
		height:60px;		
	}
	
	.clapat-button-wrap.circle {
		min-width:104px;
		height:104px;	
	}
	
	.text-align-center .clapat-button-wrap {
		margin:0 auto;
	}
	
	.clapat-button {		
		opacity:1;		
	}
	
	.button-border {
		height: 50px;
		width: auto;
		border: solid 2px #000;
		background-color:#000;
		border-radius: 5px;
		cursor:pointer;
		font-size: 16px;
		font-weight: 500;
		line-height:50px;
		overflow: hidden;
		color:#000;
		text-align:center;
		-webkit-transition : border 0.2s ease-out;
		transition : border 0.2s ease-out;
		box-sizing:initial !important;
	}
	
	.light-content .button-border, .dark-section .button-border {
		border: solid 2px #fff;
		background-color:#fff;
	}
	
	.light-content .light-section .button-border {
		border: solid 2px #000;
		background-color:#000;
	}
	
	.light-content .button-border a, .dark-section .button-border a {
		color:#000;
	}
	
	.light-content .light-section .button-border a {
		color:#fff;
	}
	
	.button-border.rounded {
		border-radius: 30px;
	}
	
	.button-border.outline {
		border: solid 3px #000;
		color:#000;
		background-color:transparent;
	}
	
	.light-content .button-border.outline, .dark-section .button-border.outline {
		border: solid 3px #fff;
		color:#fff;		
		background-color:transparent;
	}
	
	.light-content .light-section .button-border.outline {
		border: solid 3px #000;		
		background-color:transparent;
	}
	
	.clapat-button a {
		position: relative;
		display: block;
		height: 100%;
	}
	
	.light-content .button-border.outline a, .dark-section .button-border.outline a {
		color:#fff;
	}
	
	.light-content .light-section .button-border.outline a {
		color:#000;
	}
	
	.dark-content .light-section .button-border a {
		color:#fff;
	}
	
	.dark-content .light-section .button-border.outline a {
		color:#000;
	}
	
	.circle .button-border {
		border-radius: 100px;
		height: 100px;
		width: 100px;
	}
	
	.button-border span {
		position: relative;
		display: inline-block;
		-webkit-transition: -webkit-transform 0.2s;
		transition: transform 0.2s;
		width: auto;
		text-align: center;
		transform-origin: 100% 0%;
		padding: 0 40px;
	}
	
	.button-border span::before {
		position: absolute;
		width: 100%;
		top: 100%;
		left: 0;
		content: attr(data-hover);
		text-align: center;
	}
	
	.clapat-button:hover .button-border span {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		transform-origin: 0% 0%;
	}
	
	.clapat-button-wrap.circle:hover .button-border {
		border: solid 2px transparent;	
	}
	
	.clapat-button-wrap.circle .button-border input, .clapat-button-wrap.circle .button-border a {
		height: 100px;
		width: 100px;
		line-height: 100px;
		text-align: center;
		padding: 0;
		font-size: 12px;
		cursor:pointer;	
	}
	
	

/*--------------------------------------------------
	Appearing Items
---------------------------------------------------*/	
	
	.has-animation {
		opacity:0;
		-webkit-transition:translateY(30px);
		transform: translateY(30px);
	}
	
	.has-animation.has-scale {
		opacity: 0;
		-webkit-transition:translateY(0px) scale(1.05);
		transform: translateY(0px) scale(1.05);
		transform-origin: 50% 0;
		will-change:transform;
	}
	
	.has-animation.has-scale-vertical {
		opacity: 0;
		-webkit-transition:translateY(0px) scaleY(1.1);
		transform: translateY(0px) scaleY(1.1);
		transform-origin: 50% 0;
		will-change:transform;
	}
	
	.has-animation.has-cover {
		opacity: 1;
		-webkit-transition:translateY(0px);
		transform: translateY(0px);
		overflow:hidden;
	}
	
	.has-animation.has-cover::after {
		content: "";
		width: 100%;
		height: 100%;
		background-color:inherit;
		position:absolute;
		top:0;
		right:0;
		z-index:10;
		-webkit-transition: all .6s cubic-bezier(0.54, 0.49, 0.2, 1.01);
		-o-transition: all .6s cubic-bezier(0.54, 0.49, 0.2, 1.01);
		transition: all .6s cubic-bezier(0.54, 0.49, 0.2, 1.01);	
	}
	
	.has-animation.has-cover.animated::after {
		width:0;
	}
	
	.has-animation.has-cover img {
		opacity: 1;
		-webkit-transition:scale(1.05);
		transform:scale(1.05);
		-webkit-transition: all .6s cubic-bezier(0.54, 0.49, 0.2, 1.01);
		-o-transition: all .6s cubic-bezier(0.54, 0.49, 0.2, 1.01);
		transition: all .6s cubic-bezier(0.54, 0.49, 0.2, 1.01);	
	}
	
	.has-animation.has-cover.animated img {
		opacity: 1;
		-webkit-transition:scale(1);
		transform:scale(1);
	}
	
	.has-mask {
		margin-bottom:10px;
	}
	
	.has-mask span {
		display:inline-table;
		overflow:hidden;
	}
	
	.has-mask span > span {
		display: inline-table;
		margin:0!important;
		line-height:inherit;
		height:inherit;
		opacity:0;
		-webkit-transform:translateY(60px);
		transform: translateY(60px);
	}
	
	h1.big-title.has-mask span, h1.big-title.has-mask span > span {
		line-height:inherit;
		height:inherit;
		margin-right:12px;
	}
	
	h1.has-mask span, h1.has-mask span > span {
		line-height:inherit;
		height:inherit;
		margin-right:12px;
	}
	
	h2.has-mask span, h2.has-mask span > span {
		line-height:inherit;
		height:inherit;
		margin-right:10px;
	}
	
	h3.has-mask span, h3.has-mask span > span {
		line-height:inherit;
		height:inherit;
		margin-right:8px;
	}	
	
	h4.has-mask span, h4.has-mask span > span {
		line-height:inherit;
		height:inherit;
		margin-right:7px;
	}
	
	h5.has-mask span, h5.has-mask span > span {
		line-height:inherit;
		height:inherit;
		margin-right:6px;
	}
	
	h6.has-mask span, h6.has-mask span > span {
		line-height:inherit;
		height:inherit;
		margin-right:5px;
	}
	
	.has-mask-fill > span {
		position: relative;
		display: inline;
		-webkit-text-fill-color: rgba(0,0,0,0.1);
		-webkit-background-clip: text;
		background-repeat: no-repeat;
		background-image: linear-gradient(#000, #000);
  		background-size: 0% 100%;
	}
	
	.has-mask-fill.block-title > span {
		display: block;
	}
	
	.light-content .has-mask-fill > span, .dark-section .has-mask-fill > span {
		-webkit-text-fill-color: rgba(255,255,255,0.1);
		background-image: linear-gradient(#fff, #fff);;
	}
	
	.light-content .light-section .has-mask-fill > span {
		-webkit-text-fill-color: rgba(0,0,0,0.1);
		-webkit-background-clip: text;
		background-repeat: no-repeat;
		background-image: linear-gradient(#000, #000);
	}
	
	.has-indent {
		text-indent:8vw;
	}
	
	.has-span-indent {
		margin-right: 30px;
		display: inline;
		vertical-align: top;
		line-height: inherit;
		font-family: 'Poppins', sans-serif;
		font-weight: 400;
		font-size: 16px;
		text-transform: initial;
		opacity:0.4;
	}
	
	.has-hover-image {
		cursor:pointer;
		display:inline-block;
		position:relative;
	}
	
	span.has-hover-image::before {
		content: '';
		position: absolute;
		bottom: 1px;
		left: 0;
		width: 100%;
		height: 2px;
		background: rgba(0,0,0,1);
		transform: scaleX(1);
		transform-origin: left;
		transition: transform .2s ease-out;
	}
	
	.light-content span.has-hover-image::before, .dark-section span.has-hover-image::before {
		background: rgba(255,255,255,1);
	}
	
	.light-content .light-section span.has-hover-image::before {
		background: rgba(0,0,0,1);
	}
  
    span.has-hover-image:hover::before {
		transform: scaleX(0);
		transform-origin: right;
	}
	
	span.has-hover-image .hover-reveal {
		left:0;
		width: 400px;
		height: 250px;
		overflow:hidden;
	}
	
	span.has-hover-image.vertical .hover-reveal {
		width: 300px;
		height: 400px;
	}
	
	.has-opacity span {
		opacity:0.2;
	}
	
	.number-counter {
		position: relative;
		display:table;
	}
	
	.number-counter::after {
		content: attr(data-symbol);
		line-height: inherit;
		top: 0;
		position: absolute;
		left: calc(100% + 5px);
	}
/*--------------------------------------------------
	Buttons
---------------------------------------------------*/	

	.button-box {
		line-height:16px;
		cursor:pointer;
		border:none;
		box-sizing:border-box;
		text-align:center;
		display:inline-block;
		position:relative;
	}
	
	.text-align-center .button-box, .text-align-center.button-box {
		margin-left:10px;
		margin-right:10px;
		text-align:center;
	}
	
	.text-align-center.button-box {
		display: flex;
		margin:auto
	}
	
	.button-content .submit-box {
		color:#fff;
	}
	
	.clapat-button-wrap {
		display: flex;
		position: relative;
		justify-content: center;
		align-items: center;
		left:0;
		right:0;
		min-width:100px;
		height:60px;		
	}
	
	.clapat-button-wrap.circle {
		min-width:104px;
		height:104px;	
	}
	
	.text-align-center .clapat-button-wrap {
		margin:0 auto;
	}
	
	.clapat-button {		
		opacity:1;		
	}
	
	.button-border {
		height: 50px;
		width: auto;
		border: solid 2px #000;
		background-color:#000;
		border-radius: 5px;
		cursor:pointer;
		font-size: 16px;
		font-weight: 500;
		line-height:50px;
		overflow: hidden;
		color:#000;
		text-align:center;
		-webkit-transition : border 0.2s ease-out;
		transition : border 0.2s ease-out;
		box-sizing:initial !important;
	}
	
	.light-content .button-border, .dark-section .button-border {
		border: solid 2px #fff;
		background-color:#fff;
	}
	
	.light-content .light-section .button-border {
		border: solid 2px #000;
		background-color:#000;
	}
	
	.light-content .button-border a, .dark-section .button-border a {
		color:#000;
	}
	
	.light-content .light-section .button-border a {
		color:#fff;
	}
	
	.button-border.rounded {
		border-radius: 30px;
	}
	
	.button-border.outline {
		border: solid 3px #000;
		color:#000;
		background-color:transparent;
	}
	
	.light-content .button-border.outline, .dark-section .button-border.outline {
		border: solid 3px #fff;
		color:#fff;		
		background-color:transparent;
	}
	
	.light-content .light-section .button-border.outline {
		border: solid 3px #000;		
		background-color:transparent;
	}
	
	.clapat-button a {
		position: relative;
		display: block;
		height: 100%;
	}
	
	.light-content .button-border.outline a, .dark-section .button-border.outline a {
		color:#fff;
	}
	
	.light-content .light-section .button-border.outline a {
		color:#000;
	}
	
	.dark-content .light-section .button-border a {
		color:#fff;
	}
	
	.dark-content .light-section .button-border.outline a {
		color:#000;
	}
	
	.circle .button-border {
		border-radius: 100px;
		height: 100px;
		width: 100px;
	}
	
	.button-border span {
		position: relative;
		display: inline-block;
		-webkit-transition: -webkit-transform 0.2s;
		transition: transform 0.2s;
		width: auto;
		text-align: center;
		transform-origin: 100% 0%;
		padding: 0 40px;
	}
	
	.button-border span::before {
		position: absolute;
		width: 100%;
		top: 100%;
		left: 0;
		content: attr(data-hover);
		text-align: center;
	}
	
	.clapat-button:hover .button-border span {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		transform-origin: 0% 0%;
	}
	
	.clapat-button-wrap.circle:hover .button-border {
		border: solid 2px transparent;	
	}
	
	.clapat-button-wrap.circle .button-border input, .clapat-button-wrap.circle .button-border a {
		height: 100px;
		width: 100px;
		line-height: 100px;
		text-align: center;
		padding: 0;
		font-size: 12px;
		cursor:pointer;	
	}
	
	
.line {
    width: calc(100% - 6.2vw);
    border-bottom: 2px solid black;
    margin: auto;
}

.main_grid .grid_item {
  filter: blur(1px) brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease;
  transform: scale(0.98);
}


.main_grid .grid_item:hover {
  filter: blur(0px) brightness(1);
  transform: scale(1.02);
  z-index: 2;
}

.main_grid:hover .grid_item:not(:hover) {
  filter: blur(2px) brightness(0.7);
  transform: scale(0.96);
  transition: filter 0.3s ease, transform 0.3s ease;
  z-index: 0;
}


.grid_item_image_ob {
  transition: filter 0.4s ease, transform 0.4s ease;
  filter: blur(1px) brightness(0.8);
}

.grid_item:hover .grid_item_image_ob {
  filter: none;
  transform: scale(1.03);
}


    footer {
      padding: 60px 40px 0;
      position: relative;
    }

    .newsletter {
      margin-bottom: 60px;
    }

    .newsletter h2 {
      font-size: 42px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .copy-email-btn {
      padding: 16%;
      border: none;
      background-color: white;
      color: #2b2b2b;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
    }
    .copy-email-btn2 {
      padding: 10%;
      border-color: #ccc;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
    }
    .copy-confirmation {
      font-size: 14px;
      color: #cceeff;
      margin-top: 10px;
      display: none;
    }

    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .footer-column {
      min-width: 160px;
      margin: 20px 0;
    }

    .footer-column h4 {
      color: #b3b3ff;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .footer-column a {
      display: block;
      
      text-decoration: none;
      margin: 6px 0;
      font-size: 16px;
    }

    .footer-column a:hover {
      text-decoration: underline;
    }

    .ticker-container {
      overflow: hidden;
 
      white-space: nowrap;
    }

    .ticker {
      display: inline-block;
      animation: scrollText 30s linear infinite;
      font-size: 160px;
      font-weight: 900;
      opacity: 1;
      text-transform: uppercase;
    }

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

    .copyright {
      text-align: center;
      font-size: 12px;
      margin: 10px 0 10px;
      color: #ccc;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .newsletter h2 {
        font-size: 30px;
      }

      .ticker {
        font-size: 80px;
      }

      .footer-columns {
        flex-direction: column;
        gap: 20px;
      }
    }

    @media (max-width: 480px) {
      .newsletter h2 {
        font-size: 24px;
      }

      .ticker {
        font-size: 60px;
      }
    }


    /* Filtre noir et blanc sur les vidéos */
.slide-item .desktop-view video {
  filter: grayscale(100%);
  transition: filter 0.4s ease;
  z-index: 1;

}



/* Quand cliqué, on retire le filtre + grain */
.slide-item.active .desktop-view video {
  filter: grayscale(0%);
}

.slide-item.active::before {
  opacity: 0;
}