@font-face {
  font-family: 'Inter';
  src: url('assets/Inter-weight300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

a:focus-visible,
button:focus-visible, .marquue-container:focus-visible {
    outline: 2px solid #1b21ca;
    outline-offset: 4px;
}

body{
background:#f7f4ee;
color:#111;
font-family:Inter,sans-serif;
overflow-x:hidden;
position:relative;
}

.atmosphere{
position:absolute;
inset:0;
z-index:0;
pointer-events:none;
overflow:hidden;
}

html {
  scroll-behavior: smooth;
}

.glow{
position:absolute;
width:550px;
height: 550px;
border-radius:50%;
background:#1b21ca;
/* filter:blur(20px); */
/* left:21%; */
right: -32%;
top:50%;
transform:translate(-50%,-50%) scale(1);
opacity:1;
z-index: -1;
/* translate(-50%, -50%) translate(309px, 484px); */
/* pointer-events:none; */
/* transition:transform 1s ease; */
}

nav{
position:fixed;
top:35px;
left:45px;
right:45px;
display:flex;
justify-content:space-between;
font-size:12px;
letter-spacing:3px;
z-index:10;
transition:.5s;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-sep {
  opacity: 0.45;
}

.project-link-arrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.project-link-arrow span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #111;
  border-radius: 50%;
  transition: .3s ease;
}

.project-link-arrow:hover span {
  transform: translateX(5px);
}

nav.scrolled{
padding:18px 25px;
background:rgba(247,244,238,.6);
backdrop-filter:blur(20px);
border-radius:50px;
border: 0.1px black solid;
top: 12px;
}


.hero{
height:100vh;
padding:40px;
display:flex;
flex-direction:column;
justify-content:center;
position:relative;
z-index:1;
overflow:hidden;
/* cursor: none; */
}

h1 {
position:relative;
z-index:1;
}

.atmosphere {
z-index:0;
}


.label{
font-size:11px;
letter-spacing:5px;
text-transform:uppercase;
margin-bottom:20px;
z-index: 1;
}


h1{

/* font-family:"Bodoni Moda",serif; */

font-family: Helvetica, Arial, sans-serif;

font-weight:400;

font-size:clamp(60px,8vw,170px);

line-height:.85;

letter-spacing:-5px;

margin-top: 2vw;

}

h1 span{
font-style: italic;
}



.hero p{

margin-top:50px;

max-width:430px;

font-size:20px;

line-height:1.6;

font-weight:300;

z-index: 1;

}





.scroll{

position:absolute;

bottom:40px;

right:50px;

font-size:11px;

letter-spacing:4px;

writing-mode:vertical-rl;

}





.marquee{

padding:25px 0;

border-top:1px solid #111;

border-bottom:1px solid #111;

overflow:hidden;

white-space:nowrap;

font-size:45px;

}



.track{

display:inline-block;

animation:move 20s linear infinite;

}


@keyframes move{

to{
transform:translateX(-50%);
}

}



.projects{

padding:120px 40px;
padding-bottom: 0px;

}


.project{

margin-bottom:100px;

}



.meta{

display:flex;

justify-content:space-between;

font-size:12px;

letter-spacing:3px;

text-transform:uppercase;

align-items: flex-start;

/* margin-bottom:3px; */

}



.project h2{

font-size:clamp(45px,3.7vw,130px);

font-weight:300;

letter-spacing:-4px;

margin-bottom: 3px;

}

.project h2+span {
    font-weight:300;
}



.image {
  height: 580px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;

  /* Horizontales Scrollen aktivieren, vertikales verbieten */
  overflow-x: auto; 
  overflow-y: hidden; 

  font-size: 60px;
  font-weight: 600;
  transition: .8s;

  /* PLATZ RESERVIEREN: Verhindert das Springen in Firefox */
  scrollbar-gutter: stable;
}

/* ==========================================================================
   NORMALZUSTAND (Scrollbalken ist da, aber komplett unsichtbar)
   ========================================================================== */

/* Für Firefox: Balken dünn und transparent machen */
@supports (scrollbar-color: transparent transparent) {
  .image {
    scrollbar-color: transparent transparent;
  }
}

/* Für Webkit (Chrome, Safari, Edge): Immer aktiv, aber unsichtbar */
.image::-webkit-scrollbar {
  display: block; /* WICHTIG: Nicht ausblenden, sonst springt es! */
  height: 8px;   /* Reserviert den Platz dauerhaft */
}

.image::-webkit-scrollbar-track {
  background: transparent;
}

.image::-webkit-scrollbar-thumb {
  background: transparent; /* Unsichtbar im Normalzustand */
  border-radius: 4px;
}


/* ==========================================================================
   HOVER-EFFEKT: Scrollbalken nur farblich einblenden
   ========================================================================== */

/* Für Firefox: Farbe beim Hover sichtbar machen */
.image:hover {
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.05); 
}

/* Für Webkit: Track und Thumb beim Hover einfärben */
.image:hover::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05); 
}

.image:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3); 
}

.image:hover::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5); 
}


/* ==========================================================================
   BILDER
   ========================================================================== */
img {
  width: auto;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;    
}
/* verschiedene Case-Welten */


.coffee .image{

background:#191512;

color:#f5eee5;

}


.matcha .image{

background:#f0d86b;

color:#3155ff;

/* border-radius:40px; */
border: 0.1px solid #00000063;

}


.luxury .image{

background:#542c39;

color:#f5eee5;

}
.center {

text-align:center;
padding:0px 60px;
margin-bottom:150px;
}



.center h2 {
font-size:90px;
letter-spacing:-5px;
/* margin-bottom: 50px; */
}



.cards {
margin-top: 70px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:40px;

}



.card {

background:#f7f7f7;
border-radius:25px;
padding:55px;
border: 0.1px solid rgba(0, 0, 0, 0.574)
}



.card h3 {

font-size:25px;
margin-bottom: 18px;
}



.process{

background:#111;

color:white;

padding:120px 60px;

}



.process h2{

font-size:90px;

letter-spacing:-5px;

}



.steps{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:40px;

margin-top:70px;

}



.step{

border-top:1px solid #555;

padding-top:25px;

}



.step h3{

font-size:35px;

margin-bottom:20px;

}





.statement {
    min-height: 90vh;
    padding: 120px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 5rem;
}

.statement h2 {
    flex: 1;

    font-size: clamp(50px, 8vw, 110px);
    font-weight: 300;
    line-height: 1;
}

.statement-content {
    flex: 0 0 420px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.statement-content {
    max-width: 350px;
}

.statement p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 28px;
    border-radius: 999px;

    background: #111;
    color: #f7f4ee;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;

    border: 1px solid #111;

    transition: .25s ease;
    text-align: center;
}

.cta-button:hover {
    background: transparent;
    color: #111;
    transform: translateY(-2px);
}

.statement h2 {
    flex: 3;
}

.statement-content {
    flex: 2;
}


.imprint{
    text-decoration: none;
    color: #111;
}

.hero h1 {
    /* font-family: "Space Grotesk", sans-serif; */
    font-size: clamp(80px, 9vw, 220px);
    line-height: .788;
    letter-spacing: clamp(-9px, -0.45vw, -10px);
    margin-top: 15px;
    font-weight: bold;}

.hero span{
    font-style: italic;
}

@media (min-width: 601px) {
  .menu-toggle {
    display: none;
  }
}
@media (max-width: 800px) {
    .image{
        height: 400px;
    }
    nav{
            top: 30px;
    left: 35px;
    right: 35px;
    }
    .projects{
    padding: 100px 14px;
    }
}

@media (max-width: 600px) {
    /* .hero h1{
        letter-spacing: -4px;
    } */
    .image{
        height: 300px;
        gap:5px
    }

    .projects{
        padding: 80px 14px;
        padding-bottom: 20px;
    }
    .project {
    margin-bottom: 80px;
}
.marquee{
    font-size: 22px;
    margin-top: 25px;
}

.process{
  padding:120px 50px;
}

.process h2{
  font-size: 70px;
}
.steps{
    display: flex;
    flex-direction: column;
    margin-top:50px;
}

.step h3 {
    font-size: 30px;
    margin-bottom: 15px;
}
.statement{
    padding: 75px 20px;
    display: block;
    min-height: 0;
}
.statement h2{
    margin-bottom: 25px;
    width: 100%;
    font-size: clamp(38px, 10vw, 72px);
}
    .center h2{
        font-size: 44px;
    }
    .center{
        padding: 0px 20px;
        margin-bottom: 100px;
    }

    .cards {
    margin-top: 40px;
    }

    .card{
      padding: 43px;
    }

    .hero{
        /* min-height: 100vh; */
        height: 95vh;
        height: auto;
        padding: 100px 20px 70px;
    }
    .hero h1{
      letter-spacing: -5px;
      /* font-size: ; */
    }
    .hero p{
      font-size: 17px;
      max-width: 100%;
      margin-top: 28px;
    }
    .scroll{
      right: 20px;
      bottom: 22px;
      font-size: 10px;
      letter-spacing: 3px;
    }
    nav {
    top: 19px;
    left: 20px;
    right: 20px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: left;
    z-index: 20;
  }

  .glow{
    width: 180px;
    height: 180px;
    right: -18%;
  }
    /* Versteckt die Links standardmäßig auf Mobile */
  .nav-links {
    display: none; 
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(247, 244, 238, 0.98); /* Dein Hintergrund-Farbton */
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 20px; /* Schön groß und edel auf Mobile */
    z-index: 9;
  }

  .nav-sep {
    display: none;
  }

  /* Der scrolled-Zustand wird kompakter und bleibt oben sauber ausgerichtet */
  nav.scrolled {
    top: 10px;
    padding: 12px 18px;
    width: calc(100% - 30px);
    margin: 0 auto;
    left: 0;
    right: 0;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(10px);
  }

  /* Wenn das Menü offen ist, zeigen wir die Links an */
  nav.nav-open .nav-links {
    display: flex;
  }

  /* Der Menü-Button (Icon) */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 18px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 11; /* Liegt immer über dem Fullscreen-Menü */
    padding: 1.5px 0;
  }

  /* Die zwei Striche des Icons */
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2.9px;
    background-color: black;
    transition: 0.3s;
  }

  /* Animation zum "X" wenn geöffnet */
  nav.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  nav.nav-open .menu-toggle span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
  }

  @media (max-width: 375px) {
    .hero h1 {
    font-size: clamp(67px, 9vw, 220px);
  }
  .marquee{
    padding: 16px 0;
  }
}
}



/* ================================
   RECHTLICHE SEITE
================================ */

.legal-logo {
    color: inherit;
    text-decoration: none;
}


.legal-page {
    padding: 180px 40px 120px;
}

.legal-page h5 {
    font-size: 15px;
    text-decoration: underline;
}
.legal-page h4 {
    font-size: 20px;
    padding-bottom: 3px;
}
.legal-links a{
  color: inherit;
  text-decoration: none;
}

/* großer Einstieg */

.legal-intro {
    min-height: 55vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 1200px;
}


.legal-intro h1 {
    margin-top: 20px;
    hyphens: auto;
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(70px, 9vw, 170px);
    font-weight: bold;
    line-height: .82;
    letter-spacing: clamp(-9px, -0.45vw, -10px);
}


.legal-intro h1 span {
    font-style: italic;
}


/* Textbereich */

.legal-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: 8vw;
}


.legal-block {
    padding: 80px 0;
    border-top: 1px solid #111;
}


.legal-block:last-child {
    border-bottom: 1px solid #111;
}


.legal-block h2 {
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(40px, 5vw, 70px);
    font-weight: bold;
    line-height: .9;
    letter-spacing: -3px;
    margin-bottom: 50px;
    hyphens: auto;
}


/* Typografie des eigentlichen Rechtstextes */

.legal-block h3 {
    font-size: 23px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 12px;
}


.legal-block p {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}


.legal-block ul {
    max-width: 700px;
    padding-left: 20px;
    margin-bottom: 20px;
}


.legal-block li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}


.legal-block a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* Footer */


footer {
  border-top: 1px solid #111;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

footer a {
  color: #111;
  text-decoration: none;
}


.footer-email {
  text-transform: none;
  letter-spacing: 0.5px;
  font-size: 11px;
}
.back-to-top {
    position: fixed;
    right: clamp(1.25rem, 3vw, 2.5rem);
    bottom: clamp(1.25rem, 3vw, 2.5rem);
    width: 3.5rem;
    height: 3.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid currentColor;
    border-radius: 50%;

    background: transparent;
    color: inherit;

    font-family: inherit;
    font-size: 1.2rem;
    line-height: 1;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
    
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #111;
    color: #f7f4ee;;
}

.back-to-top span {
    display: block;
    transform: translateY(-1px);
}

/* Mobile */

@media (max-width: 600px) {

    .legal-page {
        padding: 130px 20px 80px;
    }


    .legal-intro {
        min-height: 60vh;
    }


    .legal-intro h1 {
        font-size: clamp(60px, 17vw, 100px);
        letter-spacing: -5px;
    }


    .legal-content {
        margin: 0;
    }


    .legal-block {
        padding: 60px 0;
    }


    .legal-block h2 {
        font-size: 45px;
        letter-spacing: -3px;
        margin-bottom: 35px;
    }


    .legal-block p,
    .legal-block li {
        font-size: 15px;
    }


    footer {
        padding: 30px 20px;
        flex-direction: column;
        gap: 25px;
    }

    footer span {
        color: #11111173;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

}

