:root {
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-text-muted: #6b6b6b;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.nav-name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 16px;
  text-decoration: none;
  color: inherit;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
  margin-left: 16px;
}

.carousel {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: var(--color-bg);
}

.carousel-slide {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 800ms ease;
  background: var(--color-bg);
  background-size: cover;
  background-position: center;
}

.carousel-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.carousel-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.preset-center {
  top: 4%;
  left: 10%;
  width: 80%;
  height: 92%;
}

.preset-left {
  top: 6%;
  left: 2%;
  width: 62%;
  height: 88%;
}

.preset-right {
  top: 6%;
  left: 36%;
  width: 62%;
  height: 88%;
}

.preset-top-small {
  top: 3%;
  left: 14%;
  width: 72%;
  height: 74%;
}

.preset-bottom-small {
  top: 23%;
  left: 14%;
  width: 72%;
  height: 74%;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-location {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  margin: 0 0 28px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
}

.contact-links a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
    font-size: 11px;
  }

  .contact-links {
    font-size: 22px;
  }
}
