@font-face {
  font-family: 'Zen Maru Gothic';
  src: url('../fonts/zen_maru_gothic/ZenMaruGothic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zen Maru Gothic';
  src: url('../fonts/zen_maru_gothic/ZenMaruGothic-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zen Maru Gothic';
  src: url('../fonts/zen_maru_gothic/ZenMaruGothic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #d0d947;
  --green-soft: #e9ecd2;
  --dark: #3d3f44;
  --dark-soft: rgba(61, 63, 68, 0.88);
  --text: #666666;
  --white: #ffffff;
  --shell: min(1500px, calc(100% - 72px));
  --radius: 34px;
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; line-height: 1.7; }
h1, h2, h3, h4 { margin: 0; font-family: 'Zen Maru Gothic', Arial, sans-serif; }
.icon {
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
}
.section-shell { width: var(--shell); margin: 0 auto; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero,
.willkommen,
.team,
.collection,
.brands,
.info,
.contact,
.footer {
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}
.hero-media,
.hero-video,
.hero-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-fallback {
  z-index: 0;
  background: url('../assets/img/willkommen-fullback.png') center/cover no-repeat;
}
.hero-overlay {
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,.16), rgba(0,0,0,.18));
}

/* ===== MAIN NAVBAR ===== */
.main-nav {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: min(1080px, calc(100% - 40px));
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 28px;
  background: rgba(61, 63, 68, 0.74);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.nav-brand {
  height: 60px;
  display: flex;
  align-items: center;
}

.nav-brand img {
  height: 60px;
  width: auto;
  max-width: none;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.7vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--green);
  font-family: 'Zen Maru Gothic', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity .2s ease, color .2s ease;
 }

.nav-menu a:hover {
  opacity: 1;
  color: #fff;   
}
   
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--green);
}
.hero-center {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 150px 20px 86px;
}
.hero-logo {
  width: min(470px, 54vw);
  filter: drop-shadow(0 10px 26px rgba(255,255,255,.18));
}
.scroll-indicator {
  margin-top: 20px;
  color: var(--green);
  font-size: 32px;
  transition: transform .25s ease;
}
.scroll-indicator:hover { transform: translateY(5px); }

/* ===== WILLKOMMEN ===== */

.section-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 16px 24px;
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.section-bar p,
.section-bar h2 {
  color: inherit;
}

.willkommen {
  background: url('../assets/img/willkommen-fullback.jpg') center/cover no-repeat;
  padding-bottom: 86px;
}

.willkommen-bar {
  min-height: 100px;
  scroll-margin-top: 0px;
}

.willkommen-bar p {
  font-family: 'Zen Maru Gothic', Arial, sans-serif;
  color: var(--green);
  font-weight: 700;
  font-size: clamp(34px, 2.3vw, 48px);
  line-height: 1.15;
}

.willkommen-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 40px);
  padding-top: 34px;
}

.willkommen-circle {
  position: relative;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
}

.willkommen-circle-text {
  width: min(660px, 44vw);
  aspect-ratio: 1 / 1;
}

.willkommen-circle-image {
  width: min(660px, 44vw);
  aspect-ratio: 1 / 1;
}

.willkommen-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.willkommen-circle-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14% 13%;
  color: var(--dark);
  text-align: center;
}

.willkommen-circle-content h2 {
  font-size: clamp(48px, 3.8vw, 68px);
  line-height: 1.02;
}

.willkommen-circle-content p {
  max-width: 82%;
  font-size: clamp(16px, 1vw, 22px);
  line-height: 1.42;
}


/* ===== TEAM ===== */

.team {
  position: relative;
  overflow: hidden;
  padding: 0 0 84px;
  background: var(--green);
}

.team-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/img/team-full-back.png') center/cover no-repeat;
  opacity: .98;
}

.team-ellipse {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1880px, 132vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

.team-shell {
  position: relative;
  z-index: 1;
  padding-top: 116px;
  padding-bottom: 34px;
}

.team-intro,
.team-members {
  margin-left: auto;
  margin-right: auto;
  background: rgba(61, 63, 68, 0.72);
  color: #f3efe9;
  border-radius: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(2px);
}

.team-intro {
  width: min(980px, 100%);
  padding: 34px 56px 32px;
}

.team-intro h2 {
  color: var(--green);
  font-size: clamp(28px, 2.3vw, 44px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.team-intro p + p {
  margin-top: 16px;
}

.team-intro p {
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.65;
  max-width: 900px;
  color: #f5f1eb;
}

.team-members {
  width: min(1120px, 100%);
  margin-top: 150px;
  padding: 24px 28px 28px;
}

.team-members-headline {
  margin-bottom: 22px;
  color: var(--green);
  font-family: 'Zen Maru Gothic', Arial, sans-serif;
  font-size: clamp(24px, 2vw, 42px);
  line-height: 1.15;
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #d9983e;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform .25s ease, filter .25s ease;
}

.team-card:hover img {
  transform: scale(1.04);
  filter: contrast(1.05);
}

.team-card h3 {
  margin-top: 12px;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.team-card p {
  margin-top: 4px;
  color: #d9d5cf;
  font-size: 12px;
  line-height: 1.35;
}
/* ===== COLLECTION ===== */

.collection {
  background: var(--green-soft);
  padding-bottom: 86px;
}
.collection-bar h2 {
  color: var(--green);
  letter-spacing: 0.08em;
  font-size: clamp(34px, 2.7vw, 48px);
}
.collection-shell {
  padding-top: 34px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 242px);
  justify-content: center;
  gap: 24px 28px;
}
.collection-item {
  width: 242px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}
.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.collection-item:hover img {
  transform: scale(1.05);
  filter: contrast(1.05);
}

.collection-item-accent {
  background: var(--green);
}

/* ===== COLLECTION ANIMATION ===== */

.collection-grid.collection-animate .collection-item {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.65s ease;
  transition-delay: calc(var(--i) * 0.025s);
}

.collection-grid.collection-animate.is-visible .collection-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 767px) {
  .collection-grid.collection-animate .collection-item {
    transform: translateY(18px) scale(0.97);
    transition-duration: 0.65s;
  }
}


/* ===== CAROUSEL ARROWS ===== */

.info-carousel .carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(35, 37, 42, 0.9);
  color: #fff;
  font-size: 18px;
  padding: 0;
  cursor: pointer;
  box-shadow: none;
  backdrop-filter: none;
}

.info-carousel .carousel-arrow.prev {
  left: 20px;
}

.info-carousel .carousel-arrow.next {
  right: 20px;
}

/* ===== BRANDS ===== */

.brands {
  padding: 0;
  background: #fff;
}

.brands-carousel {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  gap: 10px;
  align-items: center;
}

.brands-carousel .carousel-arrow {
  position: static;
  transform: none;
  width: auto;
  height: auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5e5f61;
  font-size: 22px;
  padding: 0;
  cursor: pointer;
  box-shadow: none;
  backdrop-filter: none;
}

.brands-carousel .carousel-viewport {
  overflow: hidden;
}

.brands-carousel .carousel-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  will-change: transform;
}

.brand-slide {
  flex: 0 0 calc((100% - 50px) / 6);
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-slide img {
  width: 100%;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity .25s ease, transform .25s ease;
}

.brand-slide img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== INFO CAROUSEL ===== */

.info {
  padding: 0;
  background: var(--dark);
}

.info-shell {
  width: 100%;
}

.info-card {
  position: relative;
  flex: 0 0 calc((100% - 8px) / 3);
  height: min(1000px, 92vh);
  min-height: min(1000px, 92vh);
  border-radius: 28px;
  overflow: hidden;
  background-color: #2f3136;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: filter .45s ease, opacity .45s ease;
}

/* ===== INFO CARD IMAGES ===== */

.info-card.card-kinder {
  background-image: url('../assets/img/info/Der_Brillen_Schroeder_pic_10.jpg');
}

.info-card.card-kontaktlinsen {
  background-image: url('../assets/img/info/Der_Brillen_Schroeder_pic_09.jpg');
}

.info-card.card-schnick {
  background-image: url('../assets/img/info/Der_Brillen_Schroeder_schnick-schnack-1.jpg');
}

.info-card.card-handwerk {
  background-image: url('../assets/img/info/Der_Brillen_Schroeder_pic_12.jpg');
}

.info-card.card-sehtest {
  background-image: url('../assets/img/info/Der_Brillen_Schroeder_pic_05.jpg');
}

.info-card.card-sonnen {
  background-image: url('../assets/img/info/Der_Brillen_Schroeder_pic_16.jpg');
}

.info-card.card-sport {
  background-image: url('../assets/img/info/Der_Brillen_Schroeder_pic_18.jpg');
}

.info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.18);
}

.info-card h3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 14px 18px 16px;
  text-align: center;
  color: var(--green);
  font-size: clamp(28px, 2.2vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(0,0,0,.28);
  background: linear-gradient(to bottom, rgba(61, 63, 68, 0.72), rgba(61, 63, 68, 0.46) 70%, rgba(61, 63, 68, 0));
}

.info-card-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: 26px 22px 30px;
  background: linear-gradient(to top, rgba(61, 63, 68, 0.88) 0%, rgba(61, 63, 68, 0.78) 48%, rgba(61, 63, 68, 0.18) 100%);
}

.info-card-overlay h4 {
  color: var(--green);
  font-size: clamp(16px, 1vw, 18px);
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin-bottom: 12px;
  font-weight: 700;
}

.info-card-overlay p {
  color: #f2eeea;
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1.6;
}

.info-card-overlay p + p {
  margin-top: 10px;
}

.info-card.is-dimmed {
  filter: grayscale(100%) blur(4px);
  opacity: .35;
  transform: none;
}

.info-card.is-active {
  filter: none;
  opacity: 1;
  transform: none;
}

.info-card.is-workshop { background-position: center center; }
.info-card.is-tech { background-position: center center; }
.info-card.is-test { background-position: center center; }

.info-carousel {
  position: relative;
  display: block;
}

.info-carousel .carousel-viewport {
  overflow: hidden;
}

.info-carousel .carousel-track {
  display: flex;
  align-items: stretch;
  gap: 6px;
  will-change: transform;
}


/* ===== CONTACT ===== */

.contact {
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 34px;
  background: url('../assets/img/desktop-contact.jpg') center/cover no-repeat;
}

.contact-box {
  margin-left: 30px;
  width: min(460px, calc(100% - 120px));
  padding: 28px 30px 26px;
  border-radius: 24px;
  background: rgba(61, 63, 68, 0.82);
  color: #fff;
  opacity: 0;
}

.contact-box .contact-headline {
  color: var(--green);
  font-size: clamp(22px, 1.6vw, 34px);
  line-height: 1.28;
  font-weight: 500;
  margin-bottom: 18px;
}

.contact-box p {
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-box p.contact-intro {
  margin-bottom: 18px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 2.1vw, 40px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
}

.contact-phone .icon {
  font-size: 30px;
  line-height: 1;
  opacity: 0.9;
}


/* ===== FOOTER ===== */

.footer {
  background: var(--green);
  padding: 56px 0 34px;
}

.footer-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 88px;
  flex: 1 1 auto;
  padding-top: 8px;
}

.footer-branding h3 {
  color: var(--dark);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 42px;
  letter-spacing: 0.02em;
}

.footer-branding h3 strong {
  font-weight: 700;
  text-shadow: 0 0 0.7px currentColor;
}

.footer-branding p,
.footer-meta p {
  color: #2f3136;
  font-size: 18px;
  line-height: 1.65;
}

.footer-branding p + p,
.footer-meta p + p {
  margin-top: 8px;
}

.footer-branding a,
.footer-meta a {
  color: inherit;
  text-decoration: none;
}

.footer-meta {
  padding-top: calc(24px * 1.2 + 42px);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.28);
  color: #fff;
  font-size: 20px;
}

.footer-hours-card {
  flex: 0 0 510px;
  background: var(--dark);
  color: #fff;
  border-radius: 22px;
  padding: 34px 42px 30px;
}

.footer-hours-card h4 {
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.footer-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  column-gap: 34px;
  row-gap: 10px;
}

.footer-hours-grid p {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
}

.footer-hours-note {
  margin-top: 24px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

/* ===== TO-TOP ===== */

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(61, 63, 68, 0.94);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.to-top:hover { background: #2f3136; }

/* ===== REVEALS ===== */

.reveal-left,
.reveal-right,
.reveal-up,
.reveal-up-delay,
.contact-box {
  opacity: 0;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.1s ease;
}

.reveal-left,
.contact-box.reveal-left {
  transform: translateX(-100px);
}

.reveal-right {
  transform: translateX(100px);
}

.reveal-up,
.reveal-up-delay {
  transform: translateY(60px);
}

.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-up.is-visible,
.reveal-up-delay.is-visible,
.contact-box.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== LEGAL PAGES ===== */

.legal-page {
  min-height: 100vh;
  padding: 20px 0 60px;
  background: var(--green-soft);
}

.legal-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 34px 38px 36px;
  border-radius: 24px;
  background: rgba(61, 63, 68, 0.82);
  color: #fff;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  color: var(--green);
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1.15;
  margin-bottom: 26px;
}

.legal-card h2 {
  color: var(--green);
  font-size: clamp(20px, 1.5vw, 28px);
  line-height: 1.2;
  margin: 28px 0 12px;
}

.legal-card p,
.legal-card li {
  color: #f5f1eb;
  font-size: 16px;
  line-height: 1.7;
}

.legal-card p + p {
  margin-top: 10px;
}

.legal-card ul {
  margin: 10px 0 0 18px;
  padding: 0;
}

.legal-card a {
  color: var(--green);
  text-decoration: none;
}

.legal-back {
  display: inline-flex;
  margin-top: 26px;
  color: var(--green);
  font-family: 'Zen Maru Gothic', Arial, sans-serif;
  font-size: 15px;
}

/* ===== LEGAL CLOSE BUTTON ===== */

.legal-close {
  position: relative;
  display: flex;
  margin: 34px auto 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(61, 63, 68, 0.8);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.legal-close span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--green);
}

.legal-close span:first-child {
  transform: rotate(45deg);
}

.legal-close span:last-child {
  transform: rotate(-45deg);
}

.legal-close:hover {
  transform: scale(1.08);
  background: rgba(61, 63, 68, 1);
}

@media (max-width: 767px) {
  .legal-page {
    padding: 20px 0 36px;
  }

  .legal-card {
    padding: 22px 18px 24px;
    border-radius: 18px;
  }

  .legal-card h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .legal-card h2 {
    font-size: 18px;
    margin: 22px 0 10px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 14px;
    line-height: 1.6;
  }

  .legal-close {
    width: 50px;
    height: 50px;
    margin-top: 28px;
  }

  .legal-close span {
    width: 20px;
  }
}

/* ==== MEDIA 1280px ====*/

@media (max-width: 1280px) {
  .team-members-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .brand-slide { flex-basis: calc((100% - 40px) / 5); }
}

/* ==== MEDIA 980px ====*/

@media (max-width: 980px) {
  :root { --shell: calc(100% - 32px); }

.main-nav {
  top: 16px;
  width: calc(100% - 24px);
  height: 80px;
  min-height: 80px;
  border-radius: 999px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  row-gap: 12px;
}

.nav-brand {
  grid-column: 1;
  grid-row: 1;
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.nav-brand img {
  height: 60px;
  width: auto;
  max-width: none;
}

.nav-toggle {
  grid-column: 2;
  grid-row: 1;
  display: block;
  align-self: center;
  justify-self: end;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu.is-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 18px;
  background: rgba(61, 63, 68, 0.86);
  border-radius: 24px;
  margin-top: 4px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.nav-menu a {
  display: block;
  text-align: center;
}

.willkommen-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-top: 28px;
}

.willkommen-circle-text,
.willkommen-circle-image {
  width: min(620px, 92vw);
}

  .team-shell { padding-top: 92px; }
  .team-intro { padding: 28px 24px 30px; }

.collection-grid {
  grid-template-columns: repeat(4, 180px);
  justify-content: center;
  gap: 20px 22px;
}

.collection-item {
  width: 180px;
}

.footer-shell,
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.footer-top {
  padding-top: 0;
}

.footer-meta {
  padding-top: 0;
}

.footer-hours-card {
  flex-basis: auto;
  width: 100%;
  max-width: 520px;
}

.footer-branding h3 {
  font-size: 22px;
}

.footer-branding p,
.footer-meta p {
  font-size: 16px;
}

.footer-hours-note {
  font-size: 16px;
}
}

/* ==== MEDIA 767px ==== */

@media (max-width: 767px) {
  .hero { min-height: 100svh; }

  .hero-media,
  .hero-video,
  .hero-fallback,
  .hero-overlay {
    inset: 0;
  }

  .hero-video { display: block; }
  .hero-center { justify-content: flex-end; }
  .hero-logo { width: min(320px, 78vw); }

  .section-bar {
    min-height: 64px;
    padding: 14px 16px;
  }

  .willkommen {
    padding-bottom: 60px;
    background-position: 62% center;
  }

  .willkommen-bar p {
    font-size: 28px;
  }

 .willkommen-circle-content {
  padding: 16% 14%;
  gap: 12px;
}

  .willkommen-circle-content h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  .willkommen-circle-content p {
  font-size: 14px;
  line-height: 1.4;
  max-width: 80%;
}

  .team {
    padding-bottom: 56px;
  }

  .team-bg {
    inset: 0;
    background-position: center top;
  }

  .team-ellipse {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 185vw;
  }

  .team-shell { padding-top: 76px; }

  .team-intro,
  .team-members {
    border-radius: 22px;
  }

  .team-members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .collection {
    padding-bottom: 62px;
  }

  .collection-shell { padding-top: 24px; }

  .collection-grid {
  grid-template-columns: repeat(2, 140px);
  justify-content: center;
  gap: 14px 12px;
}

  .collection-item {   width: 140px; }

.brands-carousel {
  display: block;
  position: relative;
}

.brands-carousel .carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.brands-carousel .carousel-track {
  display: flex;
  gap: 8px;
}

.brand-slide {
  flex: 0 0 calc((100% - 16px) / 3);
  min-width: calc((100% - 16px) / 3);
  min-height: 56px;
}

.brand-slide img {
  max-width: 94px;
  max-height: 94px;
}

.info-carousel .carousel-arrow {
  width: 38px;
  height: 38px;
  font-size: 16px;
}

.info-carousel .carousel-arrow.prev {
  left: 14px;
}

.info-carousel .carousel-arrow.next {
  right: 14px;
}

.info-card {
  flex: 0 0 100%;
  height: 100svh;
  min-height: 100svh;
}

.info-card-overlay {
  padding: 18px 16px 36px;
}

.info-card-overlay h4 {
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 10px;
  font-weight: 700;
}

.info-card-overlay p {
  font-size: 12px;
  line-height: 1.52;
}

.info-card-overlay p + p {
  margin-top: 8px;
}

.info-carousel,
.brands-carousel {
  touch-action: pan-y pinch-zoom;
  
}
.section-shell,
.carousel-viewport,
.carousel-track,
.willkommen-stage,
.collection-grid,
.footer-shell,
.footer-top {
  max-width: 100%;
}

.info-carousel .carousel-viewport,
.brands-carousel .carousel-viewport {
  overflow: hidden;
}

.info-carousel .carousel-track {
  gap: 6px;
}

.info-carousel .carousel-arrow,
.brands-carousel .carousel-arrow {
  display: none;
}

.contact {
  min-height: 100svh;
  padding: 0 0 24px;
  align-items: flex-end;
  justify-content: center;
  background-position: 64% center;
}

.contact-box {
  width: calc(100% - 32px);
  max-width: 520px;
  margin: 0 auto;
  padding: 22px 18px 20px;
  border-radius: 18px;
}

.contact-box .contact-headline {
  font-size: 22px;
  line-height: 1.28;
}

.contact-box.reveal-left {
  transform: translateX(-40px);
}

.contact-box.is-visible {
  transform: translateX(0);
}

.contact-box h2 {
  font-size: 22px;
  line-height: 1.28;
  margin-bottom: 14px;
}

.contact-box p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.contact-box p.contact-intro {
  margin-bottom: 14px;
}

.contact-phone {
  gap: 10px;
  font-size: 22px;
}

.contact-phone .icon {
  font-size: 24px;
}
    
    .footer {
  padding: 36px 0 26px;
}

.footer-shell {
  gap: 26px;
}

.footer-top {
  gap: 26px;
}

.footer-branding h3 {
  font-size: 18px;  
  margin-bottom: 20px;
}

.footer-branding p,
.footer-meta p {
  font-size: 14px;
  line-height: 1.55;
}

.footer-social {
  margin-top: 20px;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  font-size: 17px;
}

.footer-hours-card {
  padding: 22px 20px 20px;
  border-radius: 18px;
}

.footer-hours-card h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-hours-grid {
  grid-template-columns: 1fr 1fr;
  column-gap: 8px;
  row-gap: 8px;
}
.footer-hours-grid p:nth-child(2n) {
  text-align: left;
}   

.footer-hours-grid p,
.footer-hours-note {
  font-size: 12px;
  line-height: 1.45;
}

.footer-hours-note {
  margin-top: 16px;
}
}