* {
  box-sizing: border-box;
  border-color: oklch(0.22 0.04 215 / 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: oklch(0.99 0.005 100);
  color: oklch(0.18 0.03 220);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  letter-spacing: -0.02em;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
video,
iframe {
  max-width: 100%;
}

.main-content {
  padding-top: 96px;
}

.container {
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-cta {
  width: 100%;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  opacity: 0;
  transform: translateY(-40px);
  animation: header-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.header-inner {
  max-width: 1152px;
  margin: 16px auto 0;
  padding: 12px 28px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: color-mix(in oklab, white 70%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 40px -10px oklch(0.5 0.1 200 / 0.25);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, oklch(0.88 0.17 95), oklch(0.85 0.15 150), oklch(0.82 0.14 195), oklch(0.78 0.13 220), oklch(0.85 0.15 150), oklch(0.88 0.17 95));
  background-size: 300% 300%;
  animation: aurora-shift 18s ease infinite;
  box-shadow: 0 20px 60px -20px oklch(0.78 0.13 210 / 0.5);
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 9999px;
  background: color-mix(in oklab, oklch(0.99 0.005 100) 80%, transparent);
}

.logo-mark span {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.text-aurora,
.gradient-text {
  background: linear-gradient(135deg, oklch(0.88 0.17 95) 0%, oklch(0.85 0.15 150) 35%, oklch(0.82 0.14 195) 65%, oklch(0.78 0.13 220) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in oklab, oklch(0.18 0.03 220) 80%, transparent);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: oklch(0.18 0.03 220);
}

.nav-link.active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, oklch(0.88 0.17 95), oklch(0.85 0.15 150), oklch(0.82 0.14 195), oklch(0.78 0.13 220), oklch(0.85 0.15 150), oklch(0.88 0.17 95));
  background-size: 300% 300%;
  animation: aurora-shift 18s ease infinite;
  opacity: 0.9;
}

.nav-link span {
  position: relative;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  border-radius: 9999px;
  padding: 8px;
  color: oklch(0.18 0.03 220);
  line-height: 0;
}

.menu-btn:hover {
  background: color-mix(in oklab, oklch(0.18 0.03 220) 5%, transparent);
}

.mobile-menu {
  max-width: 1152px;
  margin: 8px auto 0;
  padding: 12px;
  border-radius: 24px;
  display: none;
  flex-direction: column;
  background: color-mix(in oklab, white 70%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 40px -10px oklch(0.5 0.1 200 / 0.25);
}

.mobile-menu.open {
  display: flex;
  animation: mobile-in 0.28s ease forwards;
}

.mobile-menu a {
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
}

.mobile-menu a:hover {
  background: color-mix(in oklab, oklch(0.18 0.03 220) 5%, transparent);
}

.hero {
  position: relative;
  margin-top: -96px;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aurora-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, oklch(0.88 0.17 95), oklch(0.85 0.15 150), oklch(0.82 0.14 195), oklch(0.78 0.13 220), oklch(0.85 0.15 150), oklch(0.88 0.17 95));
  background-size: 300% 300%;
  animation: aurora-shift 18s ease infinite;
  mix-blend-mode: soft-light;
  opacity: 0.8;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, transparent, oklch(0.99 0.005 100));
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  will-change: transform;
}

.badge {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: color-mix(in oklab, white 70%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.hero-title {
  max-width: 1100px;
  font-size: 96px;
  line-height: 1.05;
  font-weight: 600;
}

.hero-subtitle {
  margin-top: 24px;
  max-width: 576px;
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in oklab, oklch(0.18 0.03 220) 75%, transparent);
}

.hero-actions,
.cta-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 14px 28px;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-dark {
  background: oklch(0.18 0.03 220);
  color: oklch(0.99 0.005 100);
}

.btn-glass {
  background: color-mix(in oklab, white 70%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.btn-border {
  border: 1px solid oklch(0.22 0.04 215 / 0.1);
  padding: 10px 20px;
  background: transparent;
}

.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px -20px oklch(0.78 0.13 210 / 0.5);
}

.btn-border:hover {
  background: oklch(0.18 0.03 220);
  color: oklch(0.99 0.005 100);
}

.btn svg {
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 10;
  transform: translateX(-50%);
  font-size: 12px;
  color: color-mix(in oklab, oklch(0.18 0.03 220) 60%, transparent);
  opacity: 0;
  animation: fade-only 1s ease 1.4s forwards;
}

.scroll-hint div {
  animation: bounce-y 2s ease infinite;
}

.section-intro {
  padding-top: 112px;
  padding-bottom: 112px;
  text-align: center;
}

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: oklch(0.45 0.03 215);
}

.heading-xl {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  max-width: 768px;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 600;
}

.heading-lg {
  margin-top: 16px;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 600;
}

.section-copy {
  margin: 24px auto 0;
  max-width: 672px;
  font-size: 18px;
  line-height: 1.65;
  color: oklch(0.45 0.03 215);
}

.flex-three,
.flex-two,
.flex-four,
.gallery-row,
.contact-layout,
.footer-columns,
.form-row,
.sauna-inner {
  display: flex;
}

.flex-three {
  gap: 20px;
}

.feature-card {
  flex: 1 1 0;
  border: 1px solid oklch(0.22 0.04 215 / 0.1);
  border-radius: 24px;
  background: oklch(1 0 0);
  padding: 32px;
  box-shadow: 0 10px 40px -10px oklch(0.5 0.1 200 / 0.25);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover,
.video-card:hover {
  transform: translateY(-6px);
}

.icon-box {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, oklch(0.88 0.17 95), oklch(0.85 0.15 150), oklch(0.82 0.14 195), oklch(0.78 0.13 220), oklch(0.85 0.15 150), oklch(0.88 0.17 95));
  background-size: 300% 300%;
  animation: aurora-shift 18s ease infinite;
}

.feature-card h3 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
}

.feature-card p,
.video-card p,
.form-card label,
.info-card .label,
.social-card .label {
  color: oklch(0.45 0.03 215);
}

.feature-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.65;
}

.section-videos {
  padding-top: 112px;
  padding-bottom: 112px;
}

.section-head-row {
  margin-bottom: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-head-row p {
  margin-top: 16px;
  max-width: 576px;
  color: oklch(0.45 0.03 215);
  line-height: 1.6;
}

.flex-two {
  gap: 24px;
}

.video-card {
  flex: 1 1 0;
  overflow: hidden;
  border: 1px solid oklch(0.22 0.04 215 / 0.1);
  border-radius: 32px;
  background: oklch(1 0 0);
  box-shadow: 0 10px 40px -10px oklch(0.5 0.1 200 / 0.25);
  transition: transform 0.35s ease;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: black;
  overflow: hidden;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  background: color-mix(in oklab, white 70%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  pointer-events: none;
}

.video-info {
  padding: 24px;
}

.video-info p {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-info h3 {
  margin-top: 4px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
}

.section-sauna {
  padding-top: 80px;
  padding-bottom: 80px;
}

.aurora-shell {
  overflow: hidden;
  border-radius: 40px;
  padding: 4px;
  background: linear-gradient(135deg, oklch(0.88 0.17 95), oklch(0.85 0.15 150), oklch(0.82 0.14 195), oklch(0.78 0.13 220), oklch(0.85 0.15 150), oklch(0.88 0.17 95));
  background-size: 300% 300%;
  animation: aurora-shift 18s ease infinite;
  box-shadow: 0 20px 60px -20px oklch(0.78 0.13 210 / 0.5);
}

.sauna-inner {
  overflow: hidden;
  border-radius: 36px;
  background: oklch(1 0 0);
}

.sauna-media,
.sauna-text {
  flex: 1 1 0;
}

.sauna-media {
  position: relative;
  min-height: 420px;
  background: black;
}

.sauna-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sauna-text {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pill-soft {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, oklch(0.96 0.07 95) 0%, oklch(0.95 0.07 150) 50%, oklch(0.94 0.06 210) 100%);
}

.sauna-text p {
  margin-top: 20px;
  color: oklch(0.45 0.03 215);
  line-height: 1.65;
}

.amenities-wrap {
  border-radius: 40px;
  padding: 4px;
  background: linear-gradient(135deg, oklch(0.88 0.17 95), oklch(0.85 0.15 150), oklch(0.82 0.14 195), oklch(0.78 0.13 220), oklch(0.85 0.15 150), oklch(0.88 0.17 95));
  background-size: 300% 300%;
  animation: aurora-shift 18s ease infinite;
  box-shadow: 0 20px 60px -20px oklch(0.78 0.13 210 / 0.5);
}

.amenities-inner {
  border-radius: 36px;
  padding: 56px;
  background: color-mix(in oklab, oklch(0.99 0.005 100) 95%, transparent);
}

.flex-four {
  gap: 40px;
}

.amenity {
  flex: 1 1 0;
  text-align: center;
}

.amenity .icon-soft {
  margin: 0 auto 12px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, oklch(0.96 0.07 95) 0%, oklch(0.95 0.07 150) 50%, oklch(0.94 0.06 210) 100%);
}

.amenity p {
  font-size: 14px;
  font-weight: 500;
}

.section-cta {
  padding-top: 128px;
  padding-bottom: 128px;
  text-align: center;
}

.section-cta h2 {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 600;
}

.site-footer {
  position: relative;
  margin-top: 128px;
  overflow: hidden;
  border-top: 1px solid color-mix(in oklab, oklch(0.22 0.04 215 / 0.1) 60%, transparent);
  background: linear-gradient(135deg, oklch(0.96 0.07 95) 0%, oklch(0.95 0.07 150) 50%, oklch(0.94 0.06 210) 100%);
}

.footer-columns {
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px;
  gap: 40px;
}

.footer-col {
  flex: 1 1 0;
}

.footer-col h3 {
  font-size: 24px;
  font-weight: 600;
}

.footer-col p,
.footer-col a,
.footer-bottom {
  color: oklch(0.45 0.03 215);
}

.footer-col p {
  margin-top: 12px;
  font-size: 14px;
}

.footer-title-small {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: oklch(0.18 0.03 220) !important;
}

.footer-contact,
.footer-links,
.social-links {
  display: flex;
}

.footer-contact {
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-contact a,
.footer-contact p {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links {
  gap: 12px;
}

.social-links a {
  border-radius: 9999px;
  padding: 12px;
  display: inline-flex;
  background: color-mix(in oklab, oklch(0.18 0.03 220) 5%, transparent);
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: oklch(0.18 0.03 220);
  transform: scale(1.08);
  background: linear-gradient(135deg, oklch(0.88 0.17 95), oklch(0.85 0.15 150), oklch(0.82 0.14 195), oklch(0.78 0.13 220), oklch(0.85 0.15 150), oklch(0.88 0.17 95));
  background-size: 300% 300%;
  animation: aurora-shift 18s ease infinite;
}

.footer-links {
  gap: 12px;
  padding-top: 8px;
  font-size: 12px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: oklch(0.18 0.03 220);
}

.footer-bottom {
  border-top: 1px solid color-mix(in oklab, oklch(0.22 0.04 215 / 0.1) 60%, transparent);
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
}

.page-hero {
  padding-top: 48px;
  padding-bottom: 16px;
  text-align: center;
}

.page-hero h1 {
  margin: 20px auto 0;
  max-width: 768px;
  font-size: 72px;
  line-height: 1.1;
  font-weight: 600;
}

.gallery-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.gallery-section-head {
  margin-bottom: 48px;
  text-align: center;
}

.gallery-section-head h2 {
  margin-top: 16px;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 600;
}

.gallery-row {
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-item {
  position: relative;
  flex: 1 1 calc(25% - 16px);
  min-width: 220px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  box-shadow: 0 10px 40px -10px oklch(0.5 0.1 200 / 0.25);
  transition: transform 0.4s ease;
}

.gallery-item.featured {
  flex-basis: calc(50% - 16px);
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  padding: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.lightbox.open {
  display: flex;
  animation: fade-only 0.25s ease forwards;
}

.lightbox-close {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 2;
  border: 0;
  border-radius: 9999px;
  padding: 12px;
  display: inline-flex;
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-img {
  max-height: 88vh;
  max-width: 92vw;
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 20px 60px -20px oklch(0.78 0.13 210 / 0.5);
  animation: lightbox-img-in 0.3s ease forwards;
}

.contact-layout {
  padding-top: 64px;
  padding-bottom: 64px;
  gap: 32px;
}

.form-col {
  flex: 3 1 0;
}

.info-col {
  flex: 2 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-card {
  border-radius: 28px;
  background: oklch(1 0 0);
  padding: 32px;
}

.form-shell {
  border-radius: 32px;
  padding: 4px;
  background: linear-gradient(135deg, oklch(0.88 0.17 95), oklch(0.85 0.15 150), oklch(0.82 0.14 195), oklch(0.78 0.13 220), oklch(0.85 0.15 150), oklch(0.88 0.17 95));
  background-size: 300% 300%;
  animation: aurora-shift 18s ease infinite;
  box-shadow: 0 20px 60px -20px oklch(0.78 0.13 210 / 0.5);
}

.form-row {
  gap: 20px;
}

.field {
  flex: 1 1 0;
}

.field.full {
  margin-top: 20px;
}

.form-card label {
  margin-bottom: 8px;
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid oklch(0.22 0.04 215 / 0.1);
  border-radius: 16px;
  background: oklch(0.99 0.005 100);
  padding: 12px 16px;
  font-size: 14px;
  color: oklch(0.18 0.03 220);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-card textarea {
  min-height: 156px;
  resize: none;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: oklch(0.18 0.03 220);
  box-shadow: 0 0 0 4px color-mix(in oklab, oklch(0.18 0.03 220) 5%, transparent);
}

.submit-btn {
  margin-top: 28px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid oklch(0.22 0.04 215 / 0.1);
  border-radius: 24px;
  background: oklch(1 0 0);
  padding: 24px;
  box-shadow: 0 10px 40px -10px oklch(0.5 0.1 200 / 0.25);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
  transform: translateX(4px);
  border-color: color-mix(in oklab, oklch(0.18 0.03 220) 20%, transparent);
}

.info-card .icon-box {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.info-card .label,
.social-card .label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card .value {
  margin-top: 4px;
  font-weight: 500;
}

.social-card {
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(135deg, oklch(0.96 0.07 95) 0%, oklch(0.95 0.07 150) 50%, oklch(0.94 0.06 210) 100%);
}

.social-card .social-links {
  margin-top: 12px;
}

.social-card .social-links a {
  background: oklch(0.99 0.005 100);
  color: oklch(0.18 0.03 220);
}

.map-section {
  padding-bottom: 80px;
}

.map-shell {
  overflow: hidden;
  border: 1px solid oklch(0.22 0.04 215 / 0.1);
  border-radius: 32px;
  box-shadow: 0 10px 40px -10px oklch(0.5 0.1 200 / 0.25);
}

.map-shell iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.animated-heading .word {
  display: inline-block;
  margin-right: 0.25em;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animated-heading.visible .word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

svg.icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

svg.icon-sm {
  width: 16px;
  height: 16px;
}

svg.icon-xs {
  width: 14px;
  height: 14px;
}

@keyframes aurora-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes header-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mobile-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-only {
  to { opacity: 1; }
}

@keyframes bounce-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes lightbox-img-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 72px; }
  .heading-xl { font-size: 54px; }
  .section-cta h2, .page-hero h1 { font-size: 60px; }
  .gallery-item { flex-basis: calc(33.333% - 16px); }
  .gallery-item.featured { flex-basis: calc(66.666% - 16px); }
}

@media (max-width: 768px) {
  .main-content { padding-top: 96px; }
  .header-inner { margin-left: 16px; margin-right: 16px; padding-left: 20px; padding-right: 20px; }
  .nav-desktop { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-menu { margin-left: 16px; margin-right: 16px; }
  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 16px; }
  .heading-xl { font-size: 40px; }
  .heading-lg, .gallery-section-head h2 { font-size: 36px; }
  .section-cta h2, .page-hero h1 { font-size: 48px; }
  .flex-three, .flex-two, .flex-four, .section-head-row, .sauna-inner, .contact-layout, .footer-columns, .form-row { flex-direction: column; }
  .section-head-row { align-items: flex-start; }
  .sauna-media { aspect-ratio: 16 / 9; min-height: 0; }
  .sauna-text { padding: 40px; }
  .amenities-inner { padding: 40px; }
  .gallery-item, .gallery-item.featured { flex-basis: calc(50% - 16px); min-width: 150px; }
}

@media (max-width: 480px) {
  .container, .container-narrow, .container-cta { padding-left: 18px; padding-right: 18px; }
  .logo-text { font-size: 16px; }
  .hero-title { font-size: 42px; }
  .heading-xl { font-size: 34px; }
  .heading-lg, .gallery-section-head h2 { font-size: 32px; }
  .section-cta h2, .page-hero h1 { font-size: 40px; }
  .section-intro, .section-videos { padding-top: 88px; padding-bottom: 88px; }
  .page-hero { padding-top: 32px; }
  .gallery-item, .gallery-item.featured { flex-basis: 100%; }
  .btn { width: 100%; }
  .hero-actions, .cta-actions { width: 100%; }
  .footer-columns { padding-top: 48px; padding-bottom: 48px; }
}



@media (max-width: 768px) {
  .section-videos .flex-two {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .section-videos .video-card {
    width: 100%;
    flex: none;
    display: block;
    opacity: 1;
    transform: none;
  }

  .section-videos .video-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
  }

  .section-videos .video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .section-sauna .sauna-inner {
    display: flex;
    flex-direction: column;
  }

  .section-sauna .sauna-media {
    width: 100%;
    flex: none;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    position: relative;
    display: block;
  }

  .section-sauna .sauna-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
}