@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/nunito-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/nunito-latin-700-normal.woff2") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  color: #111111;
  font-family: "Nunito", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow: hidden;
}

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

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

button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.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;
}

.topbar {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-picker {
  display: block;
  margin: 0;
}

.lang-picker__select {
  height: 44px;
  min-width: 58px;
  padding: 0 28px 0 12px;
  border-radius: 12px;
  border: 1px solid #e4e4e4;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23111' d='M1.1 1.2 6 6.1l4.9-4.9 1.1 1.1L6 8.3.0 2.3z'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 10px 7px;
  color: #111;
  font: 700 0.8rem/1 system-ui, sans-serif;
  letter-spacing: 0.04em;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.lang-picker__select:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e4e4e4;
  background: #fff;
  display: grid;
  place-items: center;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  display: block;
  position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle__bars::before {
  top: -6px;
}

.menu-toggle__bars::after {
  top: 6px;
}

body.menu-open .menu-toggle__bars {
  background: transparent;
}

body.menu-open .menu-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-menu[hidden]:not(.is-open) {
  display: none;
}

.site-menu.is-open[hidden] {
  display: grid;
}

.site-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  display: grid;
  gap: 1.2rem;
}

.site-menu__list a {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Full screens switched by transform */
.shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  --panel-drag: 0px;
  --panel-slide-ms: 780ms;
  --panel-slide-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: transform var(--panel-slide-ms) var(--panel-slide-ease);
  will-change: transform;
}

.shell.is-dragging .screen {
  transition: none;
}

/* Home stays put; later panels slide over it so the logo passes under the shutter */
.screen--home {
  transform: translate3d(0, 0, 0);
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 20px 32px;
}

.screen--map,
.screen--news,
.screen--contact {
  transform: translate3d(0, calc(100% + var(--panel-drag)), 0);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 16px 16px;
}

.shell[data-panel="map"] .screen--home,
.shell[data-panel="news"] .screen--home,
.shell[data-panel="contact"] .screen--home {
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.shell[data-panel="map"] .screen--map {
  transform: translate3d(0, var(--panel-drag), 0);
}

.shell[data-panel="map"] .screen--news,
.shell[data-panel="map"] .screen--contact {
  transform: translate3d(0, calc(100% + var(--panel-drag)), 0);
}

.shell[data-panel="news"] .screen--map {
  transform: translate3d(0, calc(-100% + var(--panel-drag)), 0);
}

.shell[data-panel="news"] .screen--news {
  transform: translate3d(0, var(--panel-drag), 0);
}

.shell[data-panel="news"] .screen--contact {
  transform: translate3d(0, calc(100% + var(--panel-drag)), 0);
}

.shell[data-panel="contact"] .screen--map {
  transform: translate3d(0, calc(-200% + var(--panel-drag)), 0);
}

.shell[data-panel="contact"] .screen--news {
  transform: translate3d(0, calc(-100% + var(--panel-drag)), 0);
}

.shell[data-panel="contact"] .screen--contact {
  transform: translate3d(0, var(--panel-drag), 0);
}

.home {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.home__logo-wrap {
  position: relative;
  z-index: 1;
  width: min(78vw, 420px);
  margin: 0 auto;
  pointer-events: none;
}

.home__logo {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  /* Soft dissolve into the page — content sits into this fade */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.45) 72%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.45) 72%,
    transparent 100%
  );
}

.home__body {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  /* Pull slightly into the logo fade — keep clear of the mark on small screens */
  margin-top: -28px;
}

.home__tagline {
  margin: 0 auto 4px;
  max-width: 22rem;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #111;
}

.home__actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.home__body > .pager {
  margin-top: 22px;
}

@media (max-width: 520px) {
  .home__logo-wrap {
    width: min(70vw, 300px);
  }

  .home__body {
    margin-top: 4px;
    gap: 16px;
  }

  .home__tagline {
    max-width: 18rem;
  }
}

@media (max-width: 380px) {
  .home__logo-wrap {
    width: min(64vw, 260px);
  }

  .home__body {
    margin-top: 8px;
  }
}

.store {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 12px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  background: #fff;
  min-width: 118px;
}

.store small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #666;
  line-height: 1.2;
}

.store strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.store--soon {
  opacity: 0.55;
  pointer-events: none;
}

.pager {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: rgba(17, 17, 17, 0.3);
}

.pager:hover,
.pager:focus-visible {
  color: rgba(17, 17, 17, 0.45);
  outline: none;
}

.pager__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.1);
  pointer-events: none;
}

.pager__chevrons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.pager__chevron {
  display: block;
  border-style: solid;
  border-color: currentColor;
  border-width: 0;
  box-sizing: border-box;
}

/* Wider / flatter ^ */
.pager__chevron--up {
  border-top-width: 1.5px;
  border-left-width: 1.5px;
  width: 10px;
  height: 10px;
  transform: scaleX(1.35) rotate(45deg);
}

/* Wider / flatter inverted ^ */
.pager__chevron--down {
  border-bottom-width: 1.5px;
  border-right-width: 1.5px;
  width: 10px;
  height: 10px;
  transform: scaleX(1.35) rotate(45deg);
}

/* Horizontal < / > (same flat style) */
.pager__chevrons--row {
  flex-direction: row;
  gap: 5px;
}

.pager__chevron--left {
  border-bottom-width: 1.5px;
  border-left-width: 1.5px;
  width: 10px;
  height: 10px;
  transform: scaleY(1.35) rotate(45deg);
}

.pager__chevron--right {
  border-top-width: 1.5px;
  border-right-width: 1.5px;
  width: 10px;
  height: 10px;
  transform: scaleY(1.35) rotate(45deg);
}

.pager--top {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.pager--bottom {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.pager--side {
  position: absolute;
  top: 42%;
  z-index: 6;
  background: rgba(255, 255, 255, 0.72);
}

.pager--prev {
  left: 10px;
}

.pager--next {
  right: 10px;
}

.pager--side[disabled] {
  opacity: 0.25;
  pointer-events: none;
}

.map-heading {
  margin: 8px 0 14px;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.map-box,
.news-box {
  width: min(100%, 1100px);
  flex: 1;
  min-height: 0;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f1e6;
}

.map-box {
  position: relative;
  background: #fff;
}

/* iPhone / browsers without Fullscreen API: expand iframe over the viewport */
body.map-pseudo-fullscreen {
  overflow: hidden;
}

body.map-pseudo-fullscreen .topbar,
body.map-pseudo-fullscreen .screen--map > .pager,
body.map-pseudo-fullscreen .screen--map > .map-heading,
body.map-pseudo-fullscreen .screen--map > .visually-hidden {
  visibility: hidden;
  pointer-events: none;
}

body.map-pseudo-fullscreen .map-box {
  position: fixed;
  inset: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
  border-radius: 0;
  background: #fff;
}

body.map-pseudo-fullscreen .map-box__frame,
body.map-pseudo-fullscreen .map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.map-box__frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.map-box__frame.is-ready {
  opacity: 1;
}

.map-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  background: #fff;
  text-align: center;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.map-loading.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.map-loading__title {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
}

.map-loading__hint {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: #666;
}

.map-loading__track {
  width: min(70%, 280px);
  height: 6px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  overflow: hidden;
}

.map-loading__fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: #4a97d9;
  transition: width 0.35s ease;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.screen--map,
.screen--news {
  padding-bottom: 56px;
}

.screen--contact {
  justify-content: center;
  padding-bottom: 48px;
}

.contact {
  width: min(100%, 420px);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.site-copy {
  margin: 28px 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.01em;
}

.contact__lead {
  margin: -6px 0 0;
  max-width: 22rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #444;
}

.contact__email {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
  padding-bottom: 2px;
}

.contact__email:hover,
.contact__email:focus-visible {
  border-bottom-color: #111;
}

.contact__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}

.contact__social-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  display: grid;
  place-items: center;
  color: #111;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact__social-link:hover,
.contact__social-link:focus-visible {
  background: #f6f6f6;
  border-color: rgba(17, 17, 17, 0.28);
  outline: none;
}

.contact__icon {
  width: 24px;
  height: 24px;
  display: block;
}

.news-box {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.news-carousel {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.news-carousel__viewport {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.news-carousel__track {
  height: 100%;
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.news-card {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  min-width: 0;
}

.news-card__media {
  flex: 1;
  min-height: 0;
  background: #f3f0ea;
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.news-card__body {
  flex: 0 0 auto;
  padding: 16px 18px 18px;
  background: #fff;
  border-top: 1px solid #eee;
}

.news-card__source {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 500;
  color: #777;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.news-card__title {
  margin: 0 0 8px;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.news-card__desc {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: #444;
}

.news-card__cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
}

.news-card:hover .news-card__cta,
.news-card:focus-visible .news-card__cta {
  border-bottom-color: #111;
}

.news-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 14px;
  background: #fff;
}

.news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.18);
}

.news-dot.is-active {
  background: rgba(17, 17, 17, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .shell {
    --panel-slide-ms: 1ms;
  }

  .screen,
  .news-carousel__track {
    transition: none;
  }
}
