@charset "UTF-8";
/* =============================================
   CO LAB GMUNDEN — Design System & Components
   SCSS source — compiled to styles.css by CodeKit
   ============================================= */
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-sage: #e0e2ca;
  --font-display: 120px;
  --font-subline: 20px;
  --font-body-s: 20px;
  --font-body-xs: 16px;
  --lh-display: 24px;
  --lh-subline: 26px;
  --lh-body-s: 24px;
  --lh-body-xs: 24px;
  --section-gap: 100px;
  --content-max: 712px;
  --content-padding: 20px;
  --gap-lg: 40px;
  --gap-md: 20px;
  --gap-sm: 10px;
  --header-height: 34px;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("../fonts/PPEditorialNew-Ultralight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Fraktion Mono";
  src: url("../fonts/PPFraktionMono-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Fraktion Mono";
  src: url("../fonts/PPFraktionMono-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-white);
  color: var(--color-black);
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 400;
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-black);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__link {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.header__link:hover {
  opacity: 0.6;
}
.header__menu-toggle {
  background: none;
  border: none;
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  text-transform: uppercase;
  cursor: pointer;
  color: inherit;
  padding: 0;
}
.header__menu-toggle:hover {
  opacity: 0.6;
}

body.menu-open {
  overflow: hidden;
}

body.booking-open {
  overflow: hidden;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--color-white);
  border: 1px solid var(--color-black);
  border-top: none;
  padding: 14px 40px;
}
.menu-overlay.is-open {
  display: block;
}
.menu-overlay__list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.menu-overlay__item a {
  display: block;
  font-size: var(--font-body-s);
  line-height: 30px;
  transition: opacity 0.2s ease;
}
.menu-overlay__item a:hover {
  opacity: 0.6;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__logo {
  position: fixed;
}
.hero__logo svg {
  display: block;
  height: 100%;
  width: auto;
}
.hero__logo svg path {
  fill: currentColor;
}
.hero__logo--base {
  z-index: 10;
  color: var(--color-black);
}
.hero__logo--overlay {
  z-index: 11;
  color: var(--color-white);
}
.hero__logo--co {
  top: 40px;
  left: 50px;
  height: 68px;
}
.hero__logo--lab {
  bottom: 30px;
  right: 40px;
  height: 100px;
}
.hero__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 380px;
  aspect-ratio: 1/1;
}
.hero__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  --frame-gap: 40px;
  --frame-thickness: 2px;
  --frame-color: rgba(255, 255, 255, 0.8);
}
.hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 0, transparent var(--frame-gap), var(--frame-color) var(--frame-gap), var(--frame-color) calc(100% - var(--frame-gap)), transparent calc(100% - var(--frame-gap)), transparent 100%) top/100% var(--frame-thickness) no-repeat, linear-gradient(to right, transparent 0, transparent var(--frame-gap), var(--frame-color) var(--frame-gap), var(--frame-color) calc(100% - var(--frame-gap)), transparent calc(100% - var(--frame-gap)), transparent 100%) bottom/100% var(--frame-thickness) no-repeat, linear-gradient(to bottom, transparent 0, transparent var(--frame-gap), var(--frame-color) var(--frame-gap), var(--frame-color) calc(100% - var(--frame-gap)), transparent calc(100% - var(--frame-gap)), transparent 100%) left/var(--frame-thickness) 100% no-repeat, linear-gradient(to bottom, transparent 0, transparent var(--frame-gap), var(--frame-color) var(--frame-gap), var(--frame-color) calc(100% - var(--frame-gap)), transparent calc(100% - var(--frame-gap)), transparent 100%) right/var(--frame-thickness) 100% no-repeat;
}
.hero__text {
  position: relative;
  padding: 50px 60px;
  min-width: 380px;
}
.hero__tagline {
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 400;
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  color: var(--color-white);
}
.hero__cta {
  display: block;
  color: var(--color-white);
  margin-top: 1.5em;
  transition: opacity 0.2s ease;
}
.hero__cta:hover {
  opacity: 0.6;
}
.hero--product .hero__tagline {
  font-size: var(--font-body-s);
}
.hero__product-title {
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 400;
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  color: var(--color-white);
  margin-bottom: 0.5em;
}

.intro {
  max-width: var(--content-max);
  margin: var(--section-gap) auto;
  padding: 0 var(--content-padding);
  scroll-margin-top: calc(var(--header-height) + 40px);
}
.intro__body {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  margin-bottom: var(--gap-lg);
  text-transform: none;
}
.intro__body h1, .intro__body h2, .intro__body h3, .intro__body h4, .intro__body h5, .intro__body h6 {
  font-family: "PP Editorial New", "Georgia", serif;
  font-weight: 200;
  margin: var(--gap-lg) 0 var(--gap-md);
}
.intro__body h1:first-child, .intro__body h2:first-child, .intro__body h3:first-child, .intro__body h4:first-child, .intro__body h5:first-child, .intro__body h6:first-child {
  margin-top: 0;
}
.intro__body h1 {
  font-size: var(--font-display);
  line-height: var(--lh-display);
}
.intro__body h2 {
  font-size: 60px;
  line-height: 1;
}
.intro__body h3 {
  font-size: 40px;
  line-height: 1.1;
}
.intro__body h4, .intro__body h5, .intro__body h6 {
  font-size: var(--font-subline);
  line-height: var(--lh-subline);
}
.intro__body p {
  margin: 0 0 var(--gap-md);
}
.intro__body p:last-child {
  margin-bottom: 0;
}
.intro__body ul, .intro__body ol {
  margin: 0 0 var(--gap-md);
  padding-left: 0;
  list-style: none;
}
.intro__body ul li::before, .intro__body ol li::before {
  content: "– ";
}
.intro__body blockquote {
  margin: var(--gap-md) 0;
  padding-left: var(--gap-md);
  border-left: 2px solid var(--color-black);
}
.intro__link {
  display: inline-block;
  transition: opacity 0.2s ease;
}
.intro__link:hover {
  opacity: 0.6;
}
.intro__features {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  margin-top: var(--gap-md);
}

.icon-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 43px;
  max-width: 665px;
  margin: 0 auto;
  padding: 0 var(--content-padding) var(--section-gap);
}
.icon-row__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.icon-row__item:hover {
  opacity: 0.6;
}
.icon-row__icon {
  width: auto;
  height: 69px;
}
.icon-row__icon img, .icon-row__icon svg {
  height: 100%;
  width: auto;
}
.icon-row__label {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  text-align: center;
  white-space: nowrap;
}

.products {
  padding: 85px 0;
}
.products--sage {
  background: var(--color-sage);
}
.products--white {
  background: var(--color-white);
}
.products__inner {
  max-width: 727px;
  margin: 0 auto;
  padding: 0 var(--content-padding);
}
.products__headline {
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-weight: 700;
  font-size: var(--font-subline);
  line-height: var(--lh-subline);
  margin-bottom: var(--gap-lg);
}

.product-card {
  display: flex;
  gap: var(--gap-md);
  padding: var(--gap-lg) 0;
}
.product-card__text {
  width: 335px;
  flex-shrink: 0;
}
.product-card__title {
  font-weight: 700;
  font-size: var(--font-subline);
  line-height: var(--lh-subline);
}
.product-card__subtitle {
  font-weight: 700;
  font-size: var(--font-subline);
  line-height: var(--lh-subline);
  margin-bottom: 21px;
}
.product-card__description {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  margin-bottom: var(--gap-md);
}
.product-card__price {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  margin-bottom: var(--gap-md);
}
.product-card__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-card__link {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  transition: opacity 0.2s ease;
}
.product-card__link:hover {
  opacity: 0.6;
}
.product-card__image {
  flex: 1;
  min-width: 0;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card--no-image .product-card__text {
  width: 100%;
}

.gallery {
  max-width: var(--content-max);
  margin: var(--section-gap) auto;
  padding: 0 var(--content-padding);
  display: flex;
  gap: 23px;
}
.gallery__thumbnails {
  display: flex;
  flex-direction: column;
  gap: 19px;
  flex-shrink: 0;
}
.gallery__thumb {
  width: 123px;
  height: 130px;
  cursor: pointer;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.gallery__thumb.is-active {
  opacity: 1;
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__main {
  flex: 1;
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-list {
  max-width: var(--content-max);
  margin: var(--section-gap) auto;
  padding: 0 var(--content-padding);
}
.price-list__title {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  margin-bottom: 10px;
}
.price-list__section-label {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  padding: 10px 0;
}
.price-list__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.price-list__description {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
}
.price-list__price-action {
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}
.price-list__price {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
}
.price-list__book-link {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  transition: opacity 0.2s ease;
}
.price-list__book-link:hover {
  opacity: 0.6;
}

.content-image {
  max-width: 732px;
  margin: var(--section-gap) auto 0;
  padding: 0 var(--content-padding);
}
.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.faq {
  max-width: 732px;
  margin: var(--section-gap) auto;
  padding: 0 var(--content-padding);
}
.faq__title {
  font-weight: 700;
  font-size: var(--font-subline);
  line-height: var(--lh-subline);
  margin-bottom: var(--gap-md);
}
.faq__intro {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  margin-bottom: 60px;
  text-transform: none;
}
.faq__filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md);
  margin-bottom: 60px;
}
.faq__filter {
  background: none;
  border: none;
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  text-transform: uppercase;
  cursor: pointer;
  color: inherit;
  padding: 0;
  transition: opacity 0.2s ease;
}
.faq__filter:hover {
  opacity: 0.6;
}
.faq__filter.is-active {
  font-weight: 700;
}
.faq__category-title {
  font-weight: 700;
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  margin-top: 40px;
  margin-bottom: 0;
}
.faq__category-title:first-child {
  margin-top: 0;
}
.faq__item {
  margin-bottom: 0;
}
.faq__question {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  cursor: pointer;
  padding: 12px 0;
  display: flex;
  gap: 8px;
  background: none;
  border: none;
  font-family: "PP Fraktion Mono", "Courier New", "Courier", monospace;
  text-transform: none;
  color: inherit;
  text-align: left;
  width: 100%;
}
.faq__question:hover {
  opacity: 0.6;
}
.faq__question::before {
  content: "/";
  flex-shrink: 0;
}
.faq__item.is-open .faq__question::before {
  content: "X";
}
.faq__answer {
  display: none;
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  padding: 0 0 24px 16px;
  text-transform: none;
}
.faq__item.is-open .faq__answer {
  display: block;
}
.faq__all-link {
  margin-top: 60px;
  display: inline-block;
  transition: opacity 0.2s ease;
}
.faq__all-link:hover {
  opacity: 0.6;
}

.page-layout {
  position: relative;
  overflow: hidden;
}
.page-layout__logo {
  position: fixed;
  pointer-events: none;
  z-index: 10;
  color: var(--color-black);
}
.page-layout__logo svg {
  display: block;
  height: 100%;
  width: auto;
}
.page-layout__logo svg path {
  fill: currentColor;
}
.page-layout__logo--co {
  top: 40px;
  left: 50px;
  height: 68px;
}
.page-layout__logo--lab {
  bottom: 30px;
  right: 40px;
  height: 100px;
}
.page-layout .intro,
.page-layout .faq {
  position: relative;
  z-index: 1;
}

.image-break {
  width: 100%;
  height: 733px;
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-break--product {
  height: 609px;
}

.footer {
  position: relative;
  z-index: 20;
  background: var(--color-sage);
}
.footer__content {
  padding: 68px 46px 24px;
}
.footer__inner {
  display: flex;
  gap: 60px;
}
@media (min-width: 1200px) {
  .footer__inner {
    gap: 100px;
  }
}
.footer__col {
  min-width: 200px;
}
.footer__col-title {
  font-weight: 700;
  font-size: var(--font-subline);
  line-height: var(--lh-body-s);
  margin-bottom: 19px;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
}
.footer__col-link {
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
  transition: opacity 0.2s ease;
}
.footer__col-link:hover {
  opacity: 0.6;
}
.footer__newsletter {
  flex: 1;
}
.footer__newsletter-title {
  font-weight: 700;
  font-size: var(--font-subline);
  line-height: var(--lh-body-s);
}
.footer__payment {
  margin-top: 40px;
  font-size: var(--font-body-xs);
  line-height: var(--lh-body-xs);
  opacity: 0.6;
}
.footer__legal {
  display: flex;
  gap: var(--gap-lg);
  margin-top: 80px;
  padding-top: 0;
}
.footer__legal-link {
  font-size: var(--font-body-xs);
  line-height: var(--lh-body-xs);
  transition: opacity 0.2s ease;
}
.footer__legal-link:hover {
  opacity: 0.6;
}
.footer__copyright {
  font-size: var(--font-body-xs);
  line-height: var(--lh-body-xs);
}

.divider {
  border: none;
  border-top: 1px solid var(--color-black);
  width: 100%;
  margin: 0;
}

.section {
  padding: var(--section-gap) 0;
}

@media (max-width: 768px) {
  :root {
    --font-display: 60px;
    --font-subline: 16px;
    --font-body-s: 16px;
    --font-body-xs: 12px;
    --lh-subline: 20.8px;
    --lh-body-s: 20.8px;
    --section-gap: 60px;
    --content-padding: 80px;
  }
  .header {
    padding: 0 16px;
  }
  .header__link--booking {
    display: none;
  }
  .menu-overlay {
    padding: 10px 16px;
  }
  .menu-overlay__list {
    align-items: flex-end;
  }
  .hero__logo--co {
    top: calc(var(--header-height) + 6px);
    left: 16px;
    height: 42px;
  }
  .hero__logo--lab {
    bottom: 20px;
    right: 16px;
    height: 64px;
  }
  .hero__text {
    padding: 40px;
    min-width: 0;
  }
  .hero__frame {
    --frame-gap: 28px;
  }
  .hero__tagline {
    font-size: 14px;
    line-height: 1.3;
  }
  .intro {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0 var(--content-padding);
  }
  .icon-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 100%;
    padding: 0 var(--content-padding) var(--section-gap);
  }
  .icon-row__item {
    flex-direction: row;
    gap: 16px;
  }
  .icon-row__icon {
    height: 57px;
  }
  .products__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0 var(--content-padding);
  }
  .product-card {
    flex-direction: column;
  }
  .product-card__text {
    width: 100%;
  }
  .product-card__image {
    width: 100%;
  }
  .product-card__image img {
    height: auto;
    aspect-ratio: 3/4;
  }
  .gallery {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0 var(--content-padding);
  }
  .gallery__thumbnails {
    flex-direction: row;
    order: 1;
  }
  .gallery__main {
    order: 0;
  }
  .gallery__thumb {
    width: 80px;
    height: 80px;
  }
  .price-list {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0 var(--content-padding);
  }
  .price-list__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .content-image {
    max-width: 100%;
    padding: 0 var(--content-padding);
  }
  .faq {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0 var(--content-padding);
  }
  .page-layout__logo--co {
    top: calc(var(--header-height) + 6px);
    left: 16px;
    height: 42px;
  }
  .page-layout__logo--lab {
    bottom: 20px;
    right: 16px;
    height: 64px;
  }
  .image-break {
    height: 659px;
  }
  .image-break--product {
    height: 659px;
  }
  .footer__content {
    padding: 40px 44px 24px;
  }
  .footer__inner {
    flex-direction: column;
    gap: 34px;
  }
  .footer__legal {
    flex-wrap: wrap;
    gap: var(--gap-sm);
    margin-top: 40px;
  }
}
@media (max-width: 390px) {
  :root {
    --content-padding: 65px;
  }
  .hero__logo--co {
    top: calc(var(--header-height) + 6px);
    left: 12px;
    height: 36px;
  }
  .hero__logo--lab {
    bottom: 16px;
    right: 12px;
    height: 54px;
  }
  .hero__text {
    padding: 30px;
  }
  .hero__tagline {
    font-size: 12px;
  }
  .hero__frame {
    --frame-gap: 24px;
  }
}
.icon-row--product {
  padding-top: 100px;
}

.intro__link--product {
  margin-top: 40px;
}
