/*!***********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/photoswipe/dist/photoswipe.css ***!
  \***********************************************************************************************/
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

/*!**********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles.scss ***!
  \**********************************************************************************************************/
@charset "UTF-8";
:root,
.blockelement__draggable-element {
  --color-primary: #6366f1;
  --color-primary-light: #818cf8;
  --color-primary-dark: #4f46e5;
  --color-accent: #06b6d4;
  --color-accent-light: #22d3ee;
  --color-accent-dark: #0891b2;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --bg-primary: rgba(255, 255, 255, 0.95);
  --bg-secondary: rgba(249, 250, 251, 0.8);
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --bg-sidebar: rgba(255, 255, 255, 0.98);
  --font-primary: "RT Rondelle", sans-serif;
  --font-secondary: "Roboto", sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:
  	0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:
  	0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 50%;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --z-navbar: 50;
  --z-sidebar: 40;
  --z-toggle: 60;
  --z-overlay: 30;
  --z-modal: 70;
}

.c-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: saturate(1.2) blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0;
  background: color-mix(in oklab, #fff 70%, transparent);
}
.c-navbar.scrolled {
  background: none;
}
.c-navbar,
.c-navbar * {
  transition: all 0.3s ease;
}
.c-navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.c-navbar__brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 40px;
}
.c-navbar__brand__logo {
  height: 40px;
  width: auto;
}
.c-navbar__pages {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .c-navbar__pages {
    display: none;
  }
}
.c-navbar__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}
@media (max-width: 768px) {
  .c-navbar__toggle {
    display: flex;
  }
}
.c-navbar__toggle span {
  width: 25px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.c-navbar__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.c-navbar__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.c-navbar__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.c-navbar__sidebar {
  position: fixed;
  top: 70px;
  right: -300px;
  width: 300px;
  height: calc(100vh - 70px);
  background: #fff;
  transition: right 0.3s ease;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 769px) {
  .c-navbar__sidebar {
    display: none;
  }
}
.c-navbar__sidebar.is-open {
  right: 0;
}

.c-navbar-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
}
.c-navbar-item a:hover {
  background: #f5f5f5;
  color: #007bff;
}

body.sidebar-open::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}
@media (min-width: 769px) {
  body.sidebar-open::after {
    display: none;
  }
}
body.sidebar-open .c-navbar {
  background-color: #ffffff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body {
  margin: 0;
  overflow-x: hidden;
  overflow-y: visible;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--font-primary);
  background-color: #e2e6e9;
  color: var(--color-gray-900);
  scroll-behavior: smooth;
  color: var(--text);
  line-height: 1.6;
}

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

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

* {
  box-sizing: border-box;
}

main {
  display: flex;
  flex-direction: column;
  overflow-y: clip;
  overflow: hidden;
  position: relative;
  min-height: 90vh;
}

.c-section__color-eeeff1 {
  background-color: #eeeff1;
}
.c-section__color-f3f3f3 {
  background-color: #f3f3f3;
}
.c-section__color-e2e6e9 {
  background-color: #e2e6e9;
}
.c-section__color-1e1e1 {
  background-color: #1e1e1e;
}
.c-section__color-000000 {
  background-color: #000000;
}
.c-section__color-ffffff {
  background-color: #ffffff;
}

.c-footer {
  background-color: #24262b;
  position: relative;
  padding: 2rem 0 1rem;
}
.c-footer__corner {
  bottom: 100%;
  color: #24262b;
  height: 10vw;
  margin-bottom: -1px;
  max-height: 150px;
  max-width: 150px;
  position: absolute;
  width: 10vw;
  max-width: 50px;
  max-height: 50px;
}
.c-footer__corner--left {
  left: 0;
}
.c-footer__corner--right {
  right: 0;
}
.c-footer__container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.c-footer__item {
  position: relative;
}
.c-footer__item a {
  position: relative;
  display: block;
  color: white;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  overflow: hidden;
}
@media (max-width: 769px) {
  .c-footer__item a {
    color: white;
    pointer-events: all;
  }
}
.c-footer__item a span {
  position: relative;
  z-index: 2;
}
.c-footer__item a::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 1px;
  border-radius: 1rem;
  transition: width 0.4s ease;
  z-index: 1;
  background-color: white;
}
.c-footer__item a:hover::before {
  width: 100%;
}
.c-footer__socialMedia {
  padding: 0.5rem;
  border-radius: 50%;
  background-color: white;
  aspect-ratio: 1;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  width: 2rem;
  height: 2rem;
}
.c-footer__socialMedia svg {
  width: 1rem;
  height: 1rem;
}
.c-footer__socialMedia:hover {
  opacity: 0.8;
}
.c-footer__links {
  display: flex;
  gap: 1rem;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 16px;
  position: relative;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
    padding: 16px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 16px 24px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.c-PageProject {
  background-color: #f3f3f3;
  margin-bottom: 4rem;
}
.c-PageProject__container {
  margin: 0 auto;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .c-PageProject__container {
    margin-top: 6rem;
  }
}
@media (min-width: 1200px) {
  .c-PageProject__container {
    margin-top: 8rem;
  }
}
.c-PageProject__headline {
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .c-PageProject__headline {
    margin-bottom: 2rem;
    text-align: left;
  }
}
.c-PageProject__headline__title {
  font-family: var(--font-family-teko);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: #111;
  word-break: break-word;
}
@media (min-width: 768px) {
  .c-PageProject__headline__title {
    line-height: 1.2;
  }
}
.c-PageProject__headline__subtitle {
  font-family: var(--font-family-teko);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 600;
  color: #555;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .c-PageProject__headline__subtitle {
    margin-top: -0.8rem;
  }
}
.c-PageProject__text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  color: #333;
  margin: 0 auto 2rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  .c-PageProject__text {
    padding-left: 10%;
    margin-bottom: 3rem;
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  .c-PageProject__text {
    padding-left: 15%;
    max-width: 85%;
  }
}
.c-PageProject__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c-PageProject__img:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.c-PageProject__images {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .c-PageProject__images {
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (min-width: 1200px) {
  .c-PageProject__images {
    gap: 3rem;
  }
}
.c-PageProject--centered {
  text-align: center;
}
.c-PageProject--centered .c-PageProject__text {
  padding-left: 0;
  max-width: 800px;
}
.c-PageProject--dark {
  background-color: #2c3e50;
  color: #ecf0f1;
}
.c-PageProject--dark .c-PageProject__headline__title {
  color: #ecf0f1;
}
.c-PageProject--dark .c-PageProject__headline__subtitle {
  color: #bdc3c7;
}
.c-PageProject--dark .c-PageProject__text {
  color: #ecf0f1;
}

.c-PageProjects {
  background-color: #f3f3f3;
  padding-top: 5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .c-PageProjects {
    padding-top: 6rem;
  }
}
@media (min-width: 1200px) {
  .c-PageProjects {
    padding-top: 8rem;
  }
}
.c-PageProjects__title {
  font-family: var(--font-family-teko);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: #111;
  word-break: break-word;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .c-PageProjects__title {
    line-height: 1.2;
    max-width: 90%;
  }
}
.c-PageProjects__items {
  display: flex;
  flex-wrap: wrap;
}
.c-PageProjects__item {
  width: 100%;
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-PageProjects__item {
    width: 50%;
    padding: 2rem;
  }
}
.c-PageProjects__item * {
  transition: all 0.7s ease;
}
.c-PageProjects__item:hover .c-PageProjects__item__img img {
  transform: scale(1.05);
}
.c-PageProjects__item:hover .c-PageProjects__item__title {
  margin-top: 0.75rem;
  padding-bottom: 0.25rem;
}
.c-PageProjects__item__img {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.c-PageProjects__item__img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .c-PageProjects__item__img img {
    aspect-ratio: 1;
  }
}
@media (min-width: 768px) {
  .c-PageProjects__item__img {
    aspect-ratio: 1;
    border-radius: 2rem;
  }
}
.c-PageProjects__item__title {
  font-family: "Heebo", sans-serif;
  font-weight: 600;
  line-height: 0.9;
  color: #000000;
  width: 100%;
  margin-top: 1rem;
  font-size: clamp(1.3rem, 3.498vw, 2.622rem);
  padding: 0 1rem;
}
.c-PageProjects__item__title p {
  margin: 0;
}
@media (max-width: 768px) {
  .c-PageProjects__item__title {
    font-size: clamp(1.62rem, 6.5vw, 2.43rem);
  }
}
@media (min-width: 1200px) {
  .c-PageProjects__item__title {
    max-width: 90%;
    margin-bottom: 2rem;
  }
}

.c-pageContent .c-grid .c-grid__layout .c-grid__item:first-of-type .c-section {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .c-pageContent .c-grid .c-grid__layout .c-grid__item:first-of-type .c-section {
    padding-top: 6rem;
  }
}

.c-PageError {
  background-color: #eef1f5;
  height: 100vh;
}
.c-PageError__container {
  margin: 0 auto;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .c-PageError__container {
    margin-top: 6rem;
  }
}
@media (min-width: 1200px) {
  .c-PageError__container {
    margin-top: 8rem;
  }
}
.c-PageError__img {
  width: 100%;
}
.c-PageError__title {
  font-family: var(--font-family-teko);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  margin: 2rem 0 0;
  line-height: 1.1;
  color: #111;
  word-break: break-word;
  text-align: center;
}
@media (min-width: 768px) {
  .c-PageError__title {
    line-height: 1.2;
  }
}

.c-keyvisual {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-keyvisual * {
  transition: all 0.3s ease;
}
.c-keyvisual__logo {
  width: 50vw;
  max-width: 400px;
  min-width: 200px;
  aspect-ratio: 1/1;
  object-fit: cover;
  height: auto;
  z-index: 2;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .c-keyvisual__logo {
    width: 60vw;
    max-width: 300px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 480px) {
  .c-keyvisual__logo {
    width: 70vw;
    max-width: 250px;
  }
}
.c-keyvisual__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
@media (max-width: 768px) {
  .c-keyvisual__title {
    font-size: clamp(2.2rem, 3.5vw, 2rem);
  }
}
.c-keyvisual__link {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  text-decoration: none;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.c-keyvisual__link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .c-keyvisual__link {
    bottom: 2.5rem;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .c-keyvisual__link {
    bottom: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
.c-keyvisual__icon {
  width: 1.5rem;
  fill: white;
}
.c-keyvisual__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: blur(2px);
  scale: 1.2;
}

.c-titlewithtext {
  padding: 2rem 0;
  color: var(--color-gray-900);
}
@media (min-width: 768px) {
  .c-titlewithtext {
    padding: 3rem 0;
  }
}
.c-titlewithtext__title {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  color: var(--color-gray-900);
}
.c-titlewithtext__title--small {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
}
.c-titlewithtext__title--medium {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.25rem;
}
.c-titlewithtext__title--large {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .c-titlewithtext__title--small {
    margin-bottom: 1.25rem;
  }
  .c-titlewithtext__title--medium {
    margin-bottom: 1.5rem;
  }
}
.c-titlewithtext__text {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-700);
}
@media (min-width: 768px) {
  .c-titlewithtext__text {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 80%;
  }
}
.c-titlewithtext__text p {
  margin: 0 0 1rem 0;
}
.c-titlewithtext__text p:last-child {
  margin-bottom: 0;
}
.c-titlewithtext__text h1,
.c-titlewithtext__text h2,
.c-titlewithtext__text h3,
.c-titlewithtext__text h4,
.c-titlewithtext__text h5,
.c-titlewithtext__text h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--color-gray-900);
}
.c-titlewithtext__text h1:first-child,
.c-titlewithtext__text h2:first-child,
.c-titlewithtext__text h3:first-child,
.c-titlewithtext__text h4:first-child,
.c-titlewithtext__text h5:first-child,
.c-titlewithtext__text h6:first-child {
  margin-top: 0;
}
.c-titlewithtext__text h1 {
  font-size: 1.875rem;
}
.c-titlewithtext__text h2 {
  font-size: 1.5rem;
}
.c-titlewithtext__text h3 {
  font-size: 1.25rem;
}
.c-titlewithtext__text h4 {
  font-size: 1.125rem;
}
.c-titlewithtext__text h5 {
  font-size: 1rem;
}
.c-titlewithtext__text h6 {
  font-size: 0.875rem;
}
.c-titlewithtext__text ul,
.c-titlewithtext__text ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}
.c-titlewithtext__text li {
  margin-bottom: 0.25rem;
}
.c-titlewithtext__text a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: var(--transition-fast);
}
.c-titlewithtext__text a:hover {
  color: var(--color-primary-dark);
}
.c-titlewithtext__text strong,
.c-titlewithtext__text b {
  font-weight: 600;
  color: var(--color-gray-900);
}
.c-titlewithtext__text em,
.c-titlewithtext__text i {
  font-style: italic;
}
.c-titlewithtext__text blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--color-primary);
  background-color: var(--color-gray-50);
  font-style: italic;
}

.c-media {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 2rem 0;
}
.c-media--gap-0 {
  gap: 0;
}
.c-media--gap-xs {
  gap: 0.25rem;
}
.c-media--gap-sm {
  gap: 0.5rem;
}
.c-media--gap-md {
  gap: 1rem;
}
.c-media--gap-lg {
  gap: 1.5rem;
}
.c-media--gap-xl {
  gap: 2rem;
}
.c-media--gap-2xl {
  gap: 3rem;
}

.c-media__item--col-span-1 {
  grid-column: span 1;
}
.c-media__item--col-span-2 {
  grid-column: span 2;
}
.c-media__item--col-span-3 {
  grid-column: span 3;
}
.c-media__item--col-span-4 {
  grid-column: span 4;
}
.c-media__item--col-span-5 {
  grid-column: span 5;
}
.c-media__item--col-span-6 {
  grid-column: span 6;
}
.c-media__item--col-span-7 {
  grid-column: span 7;
}
.c-media__item--col-span-8 {
  grid-column: span 8;
}
.c-media__item--col-span-9 {
  grid-column: span 9;
}
.c-media__item--col-span-10 {
  grid-column: span 10;
}
.c-media__item--col-span-11 {
  grid-column: span 11;
}
.c-media__item--col-span-12 {
  grid-column: span 12;
}
@media (max-width: 1024px) {
  .c-media__item--col-span-tablet-1 {
    grid-column: span 1;
  }
  .c-media__item--col-span-tablet-2 {
    grid-column: span 2;
  }
  .c-media__item--col-span-tablet-3 {
    grid-column: span 3;
  }
  .c-media__item--col-span-tablet-4 {
    grid-column: span 4;
  }
  .c-media__item--col-span-tablet-5 {
    grid-column: span 5;
  }
  .c-media__item--col-span-tablet-6 {
    grid-column: span 6;
  }
  .c-media__item--col-span-tablet-7 {
    grid-column: span 7;
  }
  .c-media__item--col-span-tablet-8 {
    grid-column: span 8;
  }
  .c-media__item--col-span-tablet-9 {
    grid-column: span 9;
  }
  .c-media__item--col-span-tablet-10 {
    grid-column: span 10;
  }
  .c-media__item--col-span-tablet-11 {
    grid-column: span 11;
  }
  .c-media__item--col-span-tablet-12 {
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  .c-media__item--col-span-mobile-1 {
    grid-column: span 1;
  }
  .c-media__item--col-span-mobile-2 {
    grid-column: span 2;
  }
  .c-media__item--col-span-mobile-3 {
    grid-column: span 3;
  }
  .c-media__item--col-span-mobile-4 {
    grid-column: span 4;
  }
  .c-media__item--col-span-mobile-5 {
    grid-column: span 5;
  }
  .c-media__item--col-span-mobile-6 {
    grid-column: span 6;
  }
  .c-media__item--col-span-mobile-7 {
    grid-column: span 7;
  }
  .c-media__item--col-span-mobile-8 {
    grid-column: span 8;
  }
  .c-media__item--col-span-mobile-9 {
    grid-column: span 9;
  }
  .c-media__item--col-span-mobile-10 {
    grid-column: span 10;
  }
  .c-media__item--col-span-mobile-11 {
    grid-column: span 11;
  }
  .c-media__item--col-span-mobile-12 {
    grid-column: span 12;
  }
}
.c-media__item--row-span-1 {
  grid-row: span 1;
}
.c-media__item--row-span-2 {
  grid-row: span 2;
}
.c-media__item--row-span-3 {
  grid-row: span 3;
}
.c-media__item--row-span-4 {
  grid-row: span 4;
}
.c-media__item--row-span-5 {
  grid-row: span 5;
}
.c-media__item--row-span-6 {
  grid-row: span 6;
}
.c-media__item--rounded {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.c-media__item-crop-1-1 {
  aspect-ratio: 1;
}
.c-media__item-crop-1-1 img {
  aspect-ratio: 1;
}
.c-media__item-crop-16-9 {
  aspect-ratio: 16/9;
}
.c-media__item-crop-16-9 img {
  aspect-ratio: 16/9;
}
.c-media__item img,
.c-media__item picture,
.c-media__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-property: filter, transform;
  transition-timing-function: var(--transition-function);
  transition-duration: var(--transition-duration);
}
img:not(.lazyload-disabled).lazyload, img:not(.lazyload-disabled).lazyloading {
  filter: blur(20px);
}
img:not(.lazyload-disabled).lazyloaded {
  filter: blur(0);
}

.pswp__bg {
  background: rgba(0, 0, 0, 0.85);
}

[data-photoswipe-gallery] .gallery-item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
[data-photoswipe-gallery] .gallery-item:hover {
  transform: scale(1.02);
}
[data-photoswipe-gallery] .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
[data-photoswipe-gallery] .gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background-color 0.2s ease;
  pointer-events: none;
}
[data-photoswipe-gallery] .gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.1);
}
[data-photoswipe-gallery] .gallery-item::before {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 1;
}
[data-photoswipe-gallery] .gallery-item:hover::before {
  opacity: 1;
}

.photoswipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  padding: 16px 0;
}
.photoswipe-grid .gallery-item {
  aspect-ratio: 1;
}

.pswp__zoom-wrap {
  height: 100%;
  width: 100%;
}

.pswp__img {
  transform: scale(1.9);
}

.photoswipe-masonry {
  columns: 3;
  column-gap: 16px;
}
.photoswipe-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .photoswipe-masonry {
    columns: 2;
  }
}
@media (max-width: 480px) {
  .photoswipe-masonry {
    columns: 1;
  }
}

@font-face {
  font-family: "RT Rondelle";
  src: url(fonts/RTRondelle-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RT Rondelle";
  src: url(fonts/RTRondelle-BoldItalic.woff) format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "RT Rondelle";
  src: url(fonts/RTRondelle-Extralight.woff) format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RT Rondelle";
  src: url(fonts/RTRondelle-ExtralightItalic.woff) format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "RT Rondelle";
  src: url(fonts/RTRondelle-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RT Rondelle";
  src: url(fonts/RTRondelle-LightItalic.woff) format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "RT Rondelle";
  src: url(fonts/RTRondelle-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RT Rondelle";
  src: url(fonts/RTRondelle-MediumItalic.woff) format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "RT Rondelle";
  src: url(fonts/RTRondelle-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RT Rondelle";
  src: url(fonts/RTRondelle-RegularItalic.woff) format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "RT Rondelle";
  src: url(fonts/RTRondelle-Thin.woff) format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RT Rondelle";
  src: url(fonts/RTRondelle-ThinItalic.woff) format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-ExtraLight.ttf) format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-ExtraLightItalic.ttf) format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-LightItalic.ttf) format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-Italic.ttf) format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-MediumItalic.ttf) format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-BoldItalic.ttf) format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-ExtraBold.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-ExtraBoldItalic.ttf) format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-Black.ttf) format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-BlackItalic.ttf) format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
