@font-face {
  font-display: swap;
  font-family: "Inter";

  font-style: normal;

  font-weight: 400;

  src: url(../../assets/fonts/schrift-1.woff2) format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Inter";

  font-style: normal;

  font-weight: 500;

  src: url(../../assets/fonts/schrift-2.woff2) format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Caveat";

  font-style: normal;

  font-weight: 400;

  src: url(../../assets/fonts/schrift-3.woff2) format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Saira Semi Condensed";

  font-style: normal;

  font-weight: 400;

  src: url(../../assets/fonts/schrift-4.woff2) format("woff2");
}

:root {
  --green: #023f17;
  --sage: #7b9a8f;
  --paper: #eae9e2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #deded8;
}

body {
  margin: 0 auto;
  max-width: 480px;
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  color: #000;
}

h1,
h2,
h3,
p {
  margin: 0;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: auto;
  margin: 0 40px;
}

.skip {
  position: fixed;
  top: -100px;
  z-index: 10;
}

.skip:focus {
  top: 0;
  background: white;
  padding: 12px;
}

.script {
  font-family: Caveat, cursive;
  color: var(--sage);
}

.hero {
  height: 844px;
  position: relative;
  background: #040802;
  isolation: isolate;
  color: white;
  overflow: clip;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 8, 2, 0.75),
    rgba(10, 17, 8, 0.045)
  );
  z-index: -1;
  pointer-events: none;
}

.header {
  position: absolute;
  inset: 46px 0 auto;
  z-index: 3;
}

.header .wrap {
  margin: 0 40px;
  display: flex;
  align-items: center;
  min-height: 62px;
}

.brand {
  position: absolute;
  width: 101px;
  height: 62px;
  left: calc(50% - 54px);
}

.logo-part {
  position: absolute;
  width: auto;
}

.logo-part.p0 {
  left: 3.18%;
  top: 62.92%;
  width: 71.29%;
  height: 36.54%;
}

.logo-part.p1 {
  left: 55.41%;
  top: 81.11%;
  width: 44.59%;
  height: 10.3%;
}

.logo-part.p2 {
  left: 0;
  top: 0;
  width: 99.88%;
  height: 79.88%;
}

.nav-toggle {
  border: 0;
  padding: 10px 0;
  width: 44px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle img {
  width: 30px;
}

.nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 auto 0 0;
  width: min(88vw, 380px);
  height: 100dvh;
  background: #000;
  color: #fff;
  padding: 32px 28px;
  padding-top: max(32px, env(safe-area-inset-top));
  padding-bottom: max(32px, env(safe-area-inset-bottom));
  gap: 0;
  overflow-y: auto;
  z-index: 100;
  visibility: hidden;
  transform: translateX(-100%);
  transition:
    transform 0.3s ease,
    visibility 0.3s;
}

.nav.open {
  visibility: visible;
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.drawer-logo {
  position: relative;
  display: block;
  width: 150px;
  height: 92px;
  flex: none;
}
.drawer-logo img {
  filter: brightness(0) invert(1);
}
.nav-close {
  background: none;
  border: 0;
  color: white;
  font-size: 36px;
  line-height: 1;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.nav > a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #ffffff30;
  font-size: 18px;
  text-transform: uppercase;
  transition: color .2s ease, padding-left .2s ease, border-color .2s ease;
}
.nav > a:focus-visible {
  color: var(--sage);
  padding-left: 8px;
  border-bottom-color: var(--sage);
}
.nav-close {
  transition: color .2s ease, transform .2s ease;
}
.nav-close:focus-visible {
  color: var(--sage);
}
@media (hover: hover) {
  .nav > a:hover {
    color: var(--sage);
    padding-left: 8px;
    border-bottom-color: var(--sage);
  }
  .nav-close:hover {
    color: var(--sage);
    transform: rotate(90deg);
  }
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: #0008;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s;
}
.nav.open + .nav-backdrop {
  opacity: 1;
  visibility: visible;
}
body.menu-open {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .nav,
  .nav-backdrop,
  .nav > a,
  .nav-close {
    transition: none;
  }
  .nav > a:hover,.nav > a:focus-visible { padding-left: 0; }
  .nav-close:hover { transform: none; }
}

.hero > .wrap {
  padding-top: 491px;
  margin-left: 31px;
}

.hero h1 {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 54px;
  line-height: 60px;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--sage);
}

.tagline {
  margin: 12px 0 0 7px;
  font-size: 10px;
  letter-spacing: 0.9px;
  white-space: nowrap;
  font-weight: 300;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--green);
  font-size: 15px;
}

.text-link span {
  border-bottom: 1px solid var(--sage);
  padding-bottom: 9px;
}

.arrow {
  width: 39px;
  height: 15px;
  object-fit: fill;
}

.hero .text-link {
  margin: 73px 0 0 9px;
  color: white;
  font-size: 16px;
}

.hero .text-link span {
  border-color: white;
  padding-bottom: 5px;
}

.hero .arrow {
  filter: brightness(0) invert(1);
}

.about {
  position: relative;
  display: grid;
  grid-template-areas: "overlap";
  overflow: clip;
  isolation: isolate;
  min-height: 451px;
}

.about > .wrap {
  grid-area: overlap;
  z-index: 1;
  padding: 53px 0 47px;
  margin-right: 40px;
}

.about .leaf {
  position: absolute;
  right: -75px;
  top: 60%;
  width: 180px;
  height: 384px;
  object-fit: contain;
  max-width: none;
  transform: translateY(-50%) rotate(50.52deg) scaleY(-1);
  margin: 0;
  pointer-events: none;
}

.about h2 {
  font-size: 23px;
  line-height: 1.25;
  white-space: nowrap;
}

.about .script {
  font-size: 27px;
  display: inline-block;
  transform: rotate(1.39deg);
}

.about p {
  font-size: 13px;
  line-height: 1.52;
  max-width: 287px;
  margin-top: 16px;
}

.about p + p {
  margin-top: 18px;
}

.about .text-link {
  margin-top: 26px;
  gap: 12px;
}

.about .arrow {
  width: 32px;
  height: 16px;
  object-fit: contain;
  margin-bottom: 9px;
}

.about .text-link picture {
  flex: 0 0 32px;
}

.bowls {
  min-height: 781px;
  background: var(--paper);
  padding: 28px 0 78px;
}

.bowls .wrap {
  margin: 0 40px;
}

.section-heading {
  text-align: center;
}

.eyebrow {
  font-size: 15px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 25px;
  margin-top: 14px;
  line-height: 1.25;
}

.section-heading .script {
  display: block;
  font-size: 32px;
  color: #235424;
  margin-top: 4px;
  transform: rotate(2.18deg);
}

.subheading {
  font-size: 12px;
  line-height: 1.25;
  max-width: 280px;
  margin: 22px auto 0;
}

.steps {
  margin-top: 44px;
}

.step {
  display: grid;
  grid-template-columns: 153px 1fr;
  grid-template-rows: auto auto 1fr;
  position: relative;
  min-height: 147px;
  column-gap: 10px;
}

.visual {
  grid-column: 1;
  grid-row: 1/4;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.number {
  font-family: Caveat, cursive;
  font-size: 30px;
  color: var(--green);
  width: 35px;
  padding-top: 1px;
}

.bowl {
  width: 102px;
  height: 122px;
  object-fit: contain;
}

.step:nth-child(2) .bowl {
  width: 108px;
  height: 100px;
}

.step:nth-child(3) .bowl {
  width: 92px;
  height: 95px;
  margin-left: 5px;
}

.step h3 {
  grid-column: 2;
  font-size: 14px;
  color: var(--green);
  padding-top: 14px;
  white-space: nowrap;
}

.step p {
  grid-column: 2;
  font-size: 12px;
  line-height: 1.25;
  margin-top: 13px;
  white-space: nowrap;
}

.step .arrow {
  position: absolute;
  width: 52px;
  left: 165px;
  top: 97px;
  transform: rotate(90deg);
}

.step:last-child {
  min-height: 112px;
}

.center {
  text-align: center;
  margin-top: 34px;
}

.outline-link {
  height: 34px;
  border: 1px solid var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 300;
  color: var(--green);
  text-transform: uppercase;
}

.center .outline-link {
  width: 262px;
  max-width: 100%;
}

.outline-link .arrow {
  width: 63px;
}

.coffee {
  display: flex;
  flex-direction: column;
}

.coffee-copy {
  order: -1;
  padding: 28px 40px 32px;
  min-height: 231px;
}

.coffee h2 {
  font-size: 30px;
  line-height: 1.38;
  text-transform: uppercase;
  white-space: nowrap;
}

.coffee h2 span {
  color: var(--green);
}

.coffee p {
  font-size: 12px;
  line-height: 1.25;
  max-width: 249px;
  margin-top: 13px;
}

.coffee > video {
  display: block;
  min-width: 0;
  width: 100%;
  height: 403px;
  object-fit: cover;
  object-position: 81% center;
}

.visit {
  min-height: 726px;
  background: url("../../assets/imgF3X1.webp") center bottom/auto 1144px no-repeat;
  padding: 41px 0 0;
}

.visit h2 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 21px;
  white-space: nowrap;
}

.visit h2 span {
  color: var(--green);
}

.visit-row {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 15px;
}

.visit-row img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.visit-row p {
  font-size: 12px;
  line-height: 1.58;
}

.visit .outline-link {
  width: 232px;
  margin-top: 7px;
  padding-inline: 17px;
}

.footer {
  background: var(--paper);
  padding: 45px 0 70px;
  min-height: 685px;
}

.footer .wrap {
  margin: 0 44px;
}

.footer-brand > a img {
  width: 172.4px;
  height: 105.56px;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-left: -2px;
}

.footer-brand p {
  font-size: 10px;
  line-height: 1.52;
  margin-top: 20px;
}

.social-icons {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 32px;
}

.social-circle {
  display: flex;
  width: 29px;
  height: 29px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.social-circle img {
  width: 18px;
  height: 18px;
}

.instagram-icon {
  border: 1.6px solid var(--green);
  width: 15px;
  height: 15px;
  border-radius: 4px;
  position: relative;
}

.instagram-icon:before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.4px solid var(--green);
  border-radius: 50%;
}

.instagram-icon:after {
  content: "";
  position: absolute;
  right: 1px;
  top: 1px;
  width: 2px;
  height: 2px;
  background: var(--green);
  border-radius: 50%;
}

.footer-column {
  border-top: 1px solid #7b9a8f55;
  font-size: 12px;
}

.footer-column:last-child {
  border-bottom: 1px solid #7b9a8f55;
}

.footer-column summary {
  list-style: none;
  min-height: 44px;
  padding: 14px 9px;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.footer-column summary::-webkit-details-marker {
  display: none;
}

.footer-column summary:after {
  content: "+";
  font-size: 18px;
  line-height: 16px;
  color: var(--green);
}

.footer-column[open] summary:after {
  content: "−";
}

.footer-column p,
.footer-column ul,
.footer-column .social-link {
  margin: 0 9px 15px;
  line-height: 1.7;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  padding: 37px 9px 0;
  font-size: 10px;
  line-height: 2.08;
}

.footer-bottom > p {
  max-width: 189px;
}

.legal {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.legal span {
  padding: 3px 20px;
  border-right: 1px solid #7b9a8f55;
}

.legal span:first-child {
  padding-left: 0;
}

.legal span:last-child {
  border: 0;
}

.nav a:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

@media (max-width: 374px) {
  .wrap {
    margin-inline: 24px;
  }

  .about > .wrap {
    margin-inline: 24px;
  }

  .bowls .wrap {
    margin-inline: 24px;
  }

  .step {
    grid-template-columns: 135px 1fr;
    column-gap: 5px;
  }

  .visual {
    gap: 5px;
  }

  .step h3 {
    font-size: 12px;
  }

  .step p {
    font-size: 10px;
  }

  .step .arrow {
    left: 141px;
  }

  .coffee-copy {
    padding-inline: 24px;
  }

  .coffee h2,
  .visit h2 {
    font-size: 27px;
  }

  .tagline {
    font-size: 8px;
    letter-spacing: 0.6px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .footer .wrap {
    margin-inline: 30px;
  }

  .about h2 {
    font-size: 21px;
  }

  .about .script {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Keep labels on one line while the original arrow keeps its proportions. */
.outline-link {
  gap: 10px;
  padding-inline: 20px;
}

.outline-link span {
  white-space: nowrap;
}

.outline-link .arrow {
  flex: 1;
  min-width: 28px;
  max-width: 63px;
  height: 8px;
}

.text-link .arrow {
  height: 8px;
}
.about .text-link .arrow { height: 16px; }

.hero .text-link .arrow {
  height: 15px;
}

.step .arrow {
  height: 8px;
}


/* Shared HTML: full-width mobile layout, header over the hero image. */
html {
  background: white;
}

body {
  max-width: none;
  position: relative;
}

.desktop-logo,
.footer-leaf {
  display: none;
}

.about .leaf {
  content: url("../../assets/imgIsolationsmodus.svg");
}

@media (min-width: 481px) {
  .hero > .wrap {
    margin-left: 40px;
  }

  .about p {
    max-width: 100%;
  }

  .about > .wrap {
    padding-bottom: 45px;
  }

  .steps {
    max-width: 390px;
    margin-inline: auto;
  }

  .step {
    grid-template-columns: 173px 1fr;
  }

  .step .arrow {
    left: 185px;
  }

  .coffee > video {
    height: 480px;
  }

  .visit {
    background-size: 100% auto;
    background-color: #e9e0d5;
  }

  .footer-brand p {
    max-width: 287px;
  }
}

/* Home: Schriftgrößen entsprechend der mobilen Über-uns-Seite. */
body:not(.about-page) .hero h1 { font-size:54px; line-height:1.115; }
body:not(.about-page) .about h2,
body:not(.about-page) .section-heading h2,
body:not(.about-page) .visit h2 {
  font-size:25px;
  line-height:1.2;
  font-weight:500;
  white-space:normal;
}
body:not(.about-page) .coffee h2 { font-size:23px; line-height:1.2; font-weight:500; }
body:not(.about-page) .about h2 .script,
body:not(.about-page) .section-heading .script { font-size:25px; line-height:1.3; }
body:not(.about-page) .about p,
body:not(.about-page) .coffee p,
body:not(.about-page) .visit-row p { font-size:15px; line-height:1.2; }
body:not(.about-page) .eyebrow { font-size:12px; }
body:not(.about-page) .subheading,
body:not(.about-page) .step p { font-size:13px; line-height:1.2; white-space:normal; }
body:not(.about-page) .step h3 { font-size:18px; line-height:1.1; font-weight:600; white-space:normal; }
body:not(.about-page) .text-link,
body:not(.about-page) .outline-link { font-size:15px; }
/* Raum für die größeren Beschriftungen in den Bowl-Schritten. */
body:not(.about-page) .step { min-height:170px; }
body:not(.about-page) .step .arrow { top:128px; }
@media (max-width:359px) {
  body:not(.about-page) .step h3 { font-size:16px; }
}
/* Über dem Titelbild; bleibt beim Scrollen am oberen Rand. */
.header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 1000;
  height: 110px;
  padding: 24px 0;
  margin-bottom: -110px;
  background: transparent;
  box-shadow: none;
}

/* Separate Glasebene: Das seitliche Menü bleibt am Viewport verankert. */
.header::before {
  content: "";
  position: absolute;
  inset: 0 0 -28px;
  z-index: -1;
  pointer-events: none;
  background: rgba(18, 22, 19, .30);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);
}
html { scroll-padding-top: 126px; }

.about p { text-wrap: pretty; }
.about .about-intro-line { white-space: nowrap; text-wrap: nowrap; }
.about .about-intro-line { font-size: clamp(12px, 3.75vw, 15px); }

body:not(.about-page) .coffee-copy h2 { font-size: 25px; }

.about { grid-template-columns: minmax(0, 1fr); }
.about > .wrap { min-width: 0; padding-right: 48px; }
.about > .wrap > div { min-width: 0; }


@media (max-width: 450px) {
  .about .leaf {
    top: 80%;
    height: 304px;
  }
}

body:not(.about-page) .step h3 { font-weight: 400; }

/* Originalen Platz der Zahlen behalten, damit die Bowl-Bilder nicht wandern. */
.step .number { position: relative; }
.step .number-space { visibility: hidden; }
.step .number-value {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 40px;
  line-height: 1;
}

.step-detail { display: contents; }

.bowls .subheading span { white-space: nowrap; }

body:not(.about-page) .bowls .subheading { font-size: clamp(9px, 2.8vw, 14px); max-width: none; }

body:not(.about-page) .step:nth-child(1) .arrow { top: 105px; }
body:not(.about-page) .step:nth-child(2) .arrow { top: 130px; }

body:not(.about-page) .about h2 .script,
body:not(.about-page) .section-heading .script {
  font-size: 40px;
  line-height: 1.3;
}

body main span.script,
body:not(.about-page) main h2 span.script {
  font-size: 40px;
  line-height: 1.3;
}

.coffee-copy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.coffee-copy::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: 20px;
  width: 290px;
  height: 250px;
  background: url('../../assets/bild-16.webp') center / contain no-repeat;
  opacity: .65;
  transform: rotate(-170deg);
  pointer-events: none;
  z-index: -1;
}
