/* =========================
   ROOT / TOKENS
   ========================= */

:root {
  --font-inter: "Inter", sans-serif;
  --font-vollkorn: "Vollkorn SC", serif;
  --font-yesteryear: "Yesteryear", cursive;
  --font-raleway: "Raleway", sans-serif;
  --font-dimension: "Source Sans Pro", Helvetica, sans-serif;
  --font-cormorant: "Cormorant Garamond", serif;
  --font-cinzel: "Cinzel", serif;

  --text-dark-1: #0d0e0f;
  --text-dark-2: #000000;
  --text-light: #ffffff;
  --yellow: #faba00;
  --link-hover: #b8b8b8;

  --banner-top: 10px;
  --banner-side-gap: 22px;
  --banner-height: 74px;
  --banner-radius: 26px;
  --banner-bg: rgba(244, 244, 242, 0.92);
  --banner-border: rgba(0, 0, 0, 0.08);

  --section-gap: 6px;
  --section-padding-y: 0px;

  --container-width: 642px;
  --section-width: min(92%, 760px);
  --content-width: min(92%, 520px);

  --overlay-dark: rgba(0, 0, 0, 0.64);
  --glass-dark: rgba(12, 16, 20, 0.78);
  --glass-light: rgba(255, 255, 255, 0.1);
}

/* =========================
   RESET / BASE
   ========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scrollbar-gutter: stable;
}

body {
  background: none;
  position: relative;
  color: var(--text-light);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(
    rgba(0, 0, 0, 0.24),
    rgba(0, 0, 0, 0.12)
  );
  transition: background 0.2s linear;
}

body.overlay-open,
body.vt-open,
body.tours-window-open,
body.guide-open {
  overflow: hidden;
}

section {
  padding-block: var(--section-padding-y);
}

a {
  transition: color 0.18s ease;
}

a:hover,
a:focus-visible {
  color: var(--link-hover);
}

/* =========================
   BACKGROUND VIDEO
   ========================= */

.page-bg-media {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  background: #050608;
}

.page-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  transform: translateX(-40px) scale(1.04);
  filter: brightness(0.88) contrast(1.08) saturate(1.08);
  transition: filter 0.18s linear, transform 0.18s linear;
  will-change: transform, filter;
}

.page-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 16, 24, 0.18) 0%,
    rgba(8, 16, 24, 0.08) 24%,
    rgba(0, 0, 0, 0.04) 50%,
    rgba(0, 0, 0, 0.1) 76%,
    rgba(0, 0, 0, 0.2) 100%
  );
  opacity: 0.26;
}

.page-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.02) 22%,
    rgba(0, 0, 0, 0) 48%,
    rgba(0, 0, 0, 0.18) 72%,
    rgba(0, 0, 0, 0.42) 100%
  );
  mix-blend-mode: screen;
  opacity: 0.42;
}

.page-bg-media.is-loop-fading .page-bg-overlay {
  opacity: 0.34;
}

/* =========================
   PAGE CONTAINER
   ========================= */

.page-container {
  position: relative;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-top: 102px;
  border-radius: 24px;
  overflow: visible;
}

.page-container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100vh - 135px);
  bottom: 0;
  border-radius: 24px;
  pointer-events: none;
  z-index: -1;
}

/* =========================
   SITE NOTICE
   ========================= */

.site-notice {
  position: fixed;
  top: 102px;
  right: 22px;
  z-index: 5000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-family: var(--font-inter);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(250, 186, 0, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.site-notice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(250, 186, 0, 0.7);
}

/* =========================
   SITE BANNER
   ========================= */

.site-banner {
  position: fixed;
  top: var(--banner-top);
  left: var(--banner-side-gap);
  right: var(--banner-side-gap);
  height: var(--banner-height);
  z-index: 100000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 26px;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.site-banner.trezor-banner {
  background: var(--banner-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--banner-border);
  border-radius: var(--banner-radius);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

body.vt-open .site-banner,
body.tours-window-open .site-banner,
body.guide-open .site-banner {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-14px);
}

.banner-left,
.banner-right {
  display: flex;
  align-items: center;
}

.banner-left {
  justify-self: start;
  gap: 12px;
}

.banner-right {
  justify-self: end;
  gap: 10px;
}

.banner-logo {
  display: block;
  width: auto;
  height: 34px;
}

/* =========================
   DESKTOP NAV
   ========================= */

.banner-nav,
.trezor-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-nav {
  justify-self: center;
  gap: 26px;
}

.trezor-nav {
  gap: 34px;
}

.banner-nav .nav-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 8px 4px;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1c1d19;
  white-space: nowrap;
}

.banner-nav .nav-link::before {
  content: "";
  display: inline-block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.96;
  filter:
    saturate(1.03)
    contrast(1.02)
    drop-shadow(0 1px 1px rgba(255, 255, 255, 0.18))
    drop-shadow(0 1px 3px rgba(0, 0, 0, 0.14));
  transition: transform 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
}

.banner-nav .nav-link:hover::before,
.banner-nav .nav-link:focus-visible::before {
  transform: translateY(-1px) scale(1.05);
  opacity: 1;
}

.banner-nav .nav-link:hover,
.banner-nav .nav-link:focus-visible,
.banner-nav .nav-link:hover .nav-label,
.banner-nav .nav-link:focus-visible .nav-label {
  color: var(--link-hover);
}

.banner-nav .nav-fox::before { background-image: url("images/fox.png"); }
.banner-nav .nav-jay::before { background-image: url("images/jay.png"); }
.banner-nav .nav-reindeer::before { background-image: url("images/reindeer.png"); }
.banner-nav .nav-bear::before { background-image: url("images/bear.png"); }

.nav-item-products {
  position: relative;
}

.nav-caret {
  position: relative;
  z-index: 3;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 2px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.24s ease;
}

.nav-item-products.is-open .nav-caret {
  transform: rotate(-135deg) translateY(-1px);
}

/* =========================
   LANGUAGE / BURGER / MOBILE MENU
   ========================= */

.lang-link {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-link:hover {
  transform: translateY(-1px) scale(1.04);
}

.lang-link img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.burger {
  display: none;
}

.mobile-menu {
  display: none;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================
   PRODUCTS MEGA MENU
   ========================= */

.products-mega {
  position: fixed;
  top: calc(var(--banner-top) + var(--banner-height) + 12px);
  left: var(--banner-side-gap);
  right: var(--banner-side-gap);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.products-mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.products-mega-inner {
  padding: 20px;
  border-radius: 22px;
  background: rgba(18, 22, 28, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.products-mega-grid.services-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-mega-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.service-mega-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(250, 186, 0, 0.35);
}

.service-mega-card-button {
  appearance: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.service-mega-image-wrap {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.service-mega-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-mega-content h3 {
  margin: 0 0 8px;
  font-family: var(--font-vollkorn);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.service-mega-content p {
  margin: 0;
  font-family: var(--font-cormorant);
  font-size: 1.15rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

/* =========================
   BACK TO TOP
   ========================= */

.arrow-container.back-to-top-container {
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 100001;
  display: flex;
  pointer-events: none;
}

.global-arrow {
  pointer-events: auto;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  background: #4a86f7;
  color: #fff;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.global-arrow.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.global-arrow-up::after {
  content: "↑";
  display: block;
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}

.global-arrow:hover,
.global-arrow:focus-visible {
  background: #5b93fb;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.26),
    0 4px 12px rgba(0, 0, 0, 0.12);
}

/* =========================
   HOME / HERO
   ========================= */

.home-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: transparent;
  border-radius: 8px;
}

.hero-image-wrap {
  transform: translateY(190px);
}
.hero-image {
    display: block;
    width: auto;
    max-width: 90%;
    height: auto;
    margin-inline: auto;
    z-index: 2;
    -webkit-mask-image: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 1) 70%,
      rgba(0, 0, 0, 0) 98%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 26%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 79%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 1) 70%,
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-composite: intersect;
    mask-composite: intersect;
}

.hero-title-block {
  position: absolute;
  left: 50%;
  bottom: 90px;
  width: 100%;
  margin-top: 0;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  z-index: 20;
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-family: var(--font-yesteryear);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.12em;
  white-space: nowrap;
  color: #8bacd9;
  -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.55);
  text-shadow:
    0 6px 18px rgba(0, 0, 0, 0.55),
    0 0 14px rgba(137, 187, 255, 0.25);
}

.hero-title {
  margin: 0;
  font-family: var(--font-cinzel);
  font-size: 45px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.06em;
  color: #eaf3fb;
  -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.25);
  text-shadow:
    0 18px 38px rgba(0, 0, 0, 0.78),
    0 0 18px rgba(185, 215, 234, 0.18);
}

@supports (-webkit-background-clip: text) {
  .hero-title {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #eef7ff 25%,
      #d7e9f7 60%,
      #b9d4ea 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.hero-divider {
  width: 120%;
  max-width: 260px;
  height: 2px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(185, 215, 234, 0),
    rgba(185, 215, 234, 0.95),
    rgba(185, 215, 234, 0)
  );
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
}

/* =========================
   SECTION COMMON
   ========================= */

.section-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--content-width);
  margin: 0 auto;
  row-gap: var(--section-gap);
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.section-title-icon {
  width: 56px;
  margin: 14px 0 10px;
  opacity: 0.85;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.6));
}

.section-header h2 {
  position: relative;
  margin: 0;
  font-family: var(--font-vollkorn);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--yellow);
  text-shadow:
    0 4px 14px rgba(0, 0, 0, 0.65),
    0 0 12px rgba(250, 186, 0, 0.35);
}

.section-header h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(185, 215, 234, 0),
    rgba(185, 215, 234, 0.95),
    rgba(185, 215, 234, 0)
  );
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.65);
}

.intro-text {
  width: 100%;
  max-width: 520px;
  margin-top: 0;
  margin-bottom: 22px;
  padding: 8px 26px;
  border-radius: 4px;
  font-family: var(--font-cormorant);
  font-size: 25px;
  line-height: 1.22;
  font-weight: 600;
  color: #f7f4ec;
  text-align: center;
  overflow-wrap: break-word;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.32),
    0 0 2px rgba(0, 0, 0, 0.9);
}

.intro-text a,
.contact-email a,
.copyright a {
  color: inherit;
  text-decoration: none;
}

.intro-text a:hover,
.intro-text a:focus-visible,
.contact-email a:hover,
.contact-email a:focus-visible,
.copyright a:hover,
.copyright a:focus-visible {
  color: var(--link-hover);
}

.text-highlight {
  display: inline;
  padding: 0.1em 0.3em;
  border-radius: 0.12em;
  background: rgba(64, 78, 93, 0.58);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.ui-btn {
  all: unset;
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 28px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-raleway);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: white;
  background: rgba(139, 172, 217, 0.42);
  border: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}

.ui-btn::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(80, 110, 130, 0.55);
  opacity: 0.7;
  transition: width 0.35s ease, opacity 0.35s ease;
}

.ui-btn:hover,
.ui-btn:focus-visible {
  color: #1f2c36;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(200, 215, 230, 0.6);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.ui-btn:hover::after,
.ui-btn:focus-visible::after {
  width: 52px;
  opacity: 1;
}

/* =========================
   MAIN SECTIONS
   ========================= */

.intro-section,
.tours-section,
.virtual-trail-section,
.journal-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.intro-stage,
.tours-stage,
.virtual-stage,
.journal-stage {
  position: relative;
  width: var(--section-width);
  margin: 0 auto;
  aspect-ratio: 3 / 4;
}

/* yleinen kuvatyyli */
.tours-image,
.virtual-image,
.journal-image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  -webkit-mask-image:
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 1) 21%,
      rgba(0, 0, 0, 0) 71%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 14%,
      rgba(0, 0, 0, 1) 86%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 12%,
      rgba(0, 0, 0, 1) 86%,
      rgba(0, 0, 0, 0) 100%
    );
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
}

/* INTRO */
#intro.intro-section {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

#intro .intro-stage {
  position: relative;
  width: 100vw;
  max-width: none;
  height: 900px;
  min-height: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: visible;
}

#intro .tours-image {
  position: absolute;
  top: 77%;
  left: 50%;
  width: 600px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

#intro .section-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 34px;
}

#intro .section-title-icon {
  opacity: 0.9;
}

/* TOURS */
#tours .tours-stage {
  transform: translateY(-80px);
}

#tours .section-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 140px;
}

#tours .tours-image {
  display: block;
  width: 40%;
  height: auto;
  margin: 0 auto;
}

#tours {
  margin-top: 60px;
}

.tours-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* VIRTUAL TRAIL */
.virtual-trail-section {
  margin-top: -80px;
}

#virtual-trail .virtual-stage {
  transform: translateY(-80px);
}

#virtual-trail .section-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 34px;
}

#virtual-trail .section-header {
  transform: translateY(-69px);
}

.virtual-image {
  transform: translateY(182px);
}

.virtual-text {
  margin-top: -66px;
}

.virtual-fox-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.virtual-fox-icon {
  display: block;
  width: 137px;
  height: auto;
  transform: translateY(162px);
  transition: filter 0.15s ease;
}

.virtual-fox-link:hover .virtual-fox-icon,
.virtual-fox-link:focus-visible .virtual-fox-icon {
  filter: invert(0.12);
}

/* JOURNAL */
.journal-section .journal-stage {
  transform: translateY(-410px);
}

.journal-section .section-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 34px;
}

.journal-image {
  transform: translateY(311px);
}

.journal-text {
  max-width: 520px;
}

#vieraskirja .guestbook-actions {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* =========================
   CONTACT
   ========================= */

.contact-section {
  padding: 90px 20px 70px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
}

.contact-section .contact-inner {
  max-width: 700px;
  margin: auto;
  transform: translateY(0px);
}

.contact-title {
  margin-bottom: 18px;
  font-family: var(--font-cinzel);
  font-size: 28px;
  letter-spacing: 0.18em;
  color: var(--text-light);
}

.contact-email a {
  font-family: var(--font-cormorant);
  font-size: 20px;
  color: var(--yellow);
}

.contact-divider {
  width: 120px;
  height: 1px;
  margin: 0 auto 28px;
  background: rgba(255, 255, 255, 0.35);
}

.contact-divider.small {
  width: 80px;
  margin: 30px auto 22px;
  opacity: 0.6;
}

.copyright {
  font-family: var(--font-inter);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: white;
  opacity: 0.7;
}

/* =========================
   LAJITOVERI OVERLAY
   ========================= */

#lajitoveri-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

#lajitoveri-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#lajitoveri-overlay.intro-bg .lajitoveri-article {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("images/overlay_tausta2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lajitoveri-article {
  position: relative;
  width: 40rem;
  max-width: 90%;
  padding: 4.5rem 2.5rem 2rem;
  border-radius: 4px;
  background-color: rgba(27, 31, 34, 0.85);
  color: #fff;
  font-family: var(--font-dimension);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.45s ease-in-out, transform 0.45s ease-in-out;
  transition-delay: 0.15s;
}

#lajitoveri-overlay.active .lajitoveri-article,
#guestbook-overlay.active .lajitoveri-article {
  opacity: 1;
  transform: translateY(0);
}

.lajitoveri-article .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  cursor: pointer;
  text-indent: -9999px;
}

.lajitoveri-article .close::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cline x1='2' y1='2' x2='18' y2='18' stroke='%23ffffff'/%3E%3Cline x1='18' y1='2' x2='2' y2='18' stroke='%23ffffff'/%3E%3C/svg%3E");
}

.lajitoveri-article h2.major {
  display: inline-block;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  font-family: var(--font-dimension);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: solid 1px rgba(255, 255, 255, 0.75);
}

.lajitoveri-article p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================
   GUESTBOOK OVERLAY / FORM
   ========================= */

#guestbook-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  place-items: center;
  padding: 20px 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

#guestbook-overlay.active {
  display: grid;
}

#guestbook-overlay .lajitoveri-article {
  position: relative;
  width: min(560px, 92vw);
  max-height: 86vh;
  overflow: auto;
  padding: 26px 26px 22px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.72)),
    url("images/vieraskirja.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#guestbook-overlay .lajitoveri-article > * {
  max-width: 100%;
}

#guestbook-overlay .lajitoveri-article h2.major {
  padding-right: 64px;
}

#guestbook-overlay #entries {
  max-height: 42vh;
  overflow: auto;
  margin-top: 14px;
  padding-right: 6px;
}

#guestbook-overlay.reading #guestbookForm {
  display: none;
}

#guestbook-close.close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  text-indent: -9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

#guestbook-close.close::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cline x1='3' y1='3' x2='17' y2='17' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='17' y1='3' x2='3' y2='17' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  opacity: 0.95;
}

#guestbook-close.close:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(250, 186, 0, 0.45);
}

#guestbookForm input,
#guestbookForm textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 10, 0.75);
  color: #fff;
  font-size: 15px;
}

#guestbookForm textarea {
  min-height: 110px;
  max-height: 220px;
  resize: vertical;
}

#guestbookForm input:focus,
#guestbookForm textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(250, 186, 0, 0.25);
}

#guestbookForm button {
  width: auto;
  min-width: 240px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 14px auto 0;
  padding: 14px 28px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-raleway);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #141414;
  background: linear-gradient(135deg, #f5c77a, #ffd992);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(250, 186, 0, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#guestbookForm button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.65),
    0 0 22px rgba(250, 186, 0, 0.28);
  filter: brightness(1.03);
}

.guestbook-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin: 8px 0 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 1.5;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.guestbook-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 2px 0 0;
  flex: 0 0 16px;
  accent-color: var(--yellow);
  cursor: pointer;
}

.guestbook-consent span {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: break-word;
}

.entry {
  margin-top: 18px;
  padding: 22px;
  border-radius: 14px;
  border-left: 3px solid var(--yellow);
  background: rgba(0, 0, 0, 0.55);
}

.entry-name {
  font-size: 18px;
  font-weight: 600;
}

.entry-location {
  font-size: 13px;
  opacity: 0.7;
}

.entry-message {
  margin-top: 10px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.entry-date {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.5;
}

/* =========================
   TOURS WINDOW OVERLAY
   ========================= */

.tours-window-overlay {
  position: fixed;
  inset: 0;
  z-index: 30001;
  display: none;
}

.tours-window-overlay.is-open {
  display: block;
}

.tours-window-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tours-window-article {
  position: relative;
  width: min(1180px, calc(100vw - 40px));
  height: min(860px, calc(100vh - 40px));
  margin: 20px auto;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(20, 22, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.tours-window-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 72px 0 24px;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tours-window-topbar h2 {
  margin: 0;
  font-family: var(--font-vollkorn);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.tours-window-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease;
}

.tours-window-close:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.16);
}

.tours-window-frame {
  position: absolute;
  inset: 64px 0 0 0;
  display: block;
  width: 100%;
  height: calc(100% - 64px);
  border: 0;
  background: #fff;
}

/* =========================
   GUIDE OVERLAY
   ========================= */

.guide-overlay {
  position: fixed;
  inset: 0;
  z-index: 30002;
  display: none;
}

.guide-overlay.is-open {
  display: block;
}

.guide-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.guide-article {
  position: relative;
  width: min(1120px, calc(100vw - 40px));
  height: min(860px, calc(100vh - 40px));
  margin: 20px auto;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(rgba(12, 16, 20, 0.84), rgba(12, 16, 20, 0.96)),
    url("images/riisi.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.guide-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease;
}

.guide-close:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.16);
}

.guide-shell {
  height: 100%;
  overflow: auto;
  padding: 34px 32px 30px;
}

.guide-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.guide-photo-wrap {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.guide-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-intro {
  padding-top: 8px;
}

.guide-kicker {
  margin: 0 0 10px;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.guide-intro h2 {
  margin: 0 0 14px;
  font-family: var(--font-vollkorn);
  font-size: 34px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}

.guide-lead {
  margin: 0 0 18px;
  max-width: 720px;
  font-family: var(--font-cormorant);
  font-size: 28px;
  line-height: 1.34;
  color: rgba(255, 255, 255, 0.94);
}

.guide-section {
  margin-top: 24px;
}

.guide-section-title {
  margin: 0 0 14px;
  font-family: var(--font-vollkorn);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.guide-body-text {
  max-width: 920px;
  font-family: var(--font-cormorant);
  font-size: 24px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.guide-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.guide-quote {
  padding: 20px 20px 18px;
  border-radius: 16px;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.guide-quote p {
  margin: 0 0 12px;
  font-family: var(--font-cormorant);
  font-size: 24px;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.95);
}

.guide-quote p:last-of-type {
  margin-bottom: 0;
}

.guide-quote span {
  display: block;
  margin-top: 14px;
  font-family: var(--font-inter);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.guide-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

/* =========================
   VIRTUAL TOUR OVERLAY
   ========================= */

.vt-overlay {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: none;
}

.vt-overlay.is-open {
  display: block;
}

.vt-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.vt-article {
  position: relative;
  width: 90vw;
  height: 90vh;
  margin: 5vh auto;
  overflow: hidden;
  border-radius: 22px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.vt-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease;
}

.vt-close:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.16);
}

.vt-content {
  position: absolute;
  inset: 0;
}

.vt-map-stage {
  position: absolute;
  inset: 122px 0 0 0;
  overflow: hidden;
}

.vt-map-base {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.vt-map-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
  pointer-events: none;
}

.vt-hotspot {
  position: absolute;
  z-index: 12;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  border: none;
  background: transparent;
  cursor: pointer;
}

.vt-hotspot::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  background: rgba(250, 186, 0, 0.95);
  box-shadow:
    0 0 0 6px rgba(250, 186, 0, 0.12),
    0 0 18px rgba(250, 186, 0, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.vt-hotspot:hover::before,
.vt-hotspot:focus-visible::before {
  transform: scale(1.08);
  box-shadow:
    0 0 0 8px rgba(250, 186, 0, 0.16),
    0 0 24px rgba(250, 186, 0, 0.4);
}

.vt-map-marker {
  position: absolute;
  z-index: 18;
  width: clamp(40px, 3.4vw, 64px);
  transform: translate(-50%, -68%);
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.55));
  transition:
    left 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.25s ease,
    opacity 0.4s ease;
}

.vt-map-marker.is-moving {
  animation: vtBearHop 0.9s ease;
}

@keyframes vtBearHop {
  0%   { transform: translate(-50%, -74%) scale(1); }
  20%  { transform: translate(-50%, -88%) scale(1.08) rotate(-4deg); }
  45%  { transform: translate(-50%, -68%) scale(0.98) rotate(3deg); }
  70%  { transform: translate(-50%, -82%) scale(1.04) rotate(-2deg); }
  100% { transform: translate(-50%, -74%) scale(1); }
}

.vt-nav {
  position: absolute;
  top: 50%;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
  background: rgba(12, 16, 20, 0.78);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.18s ease, background 0.18s ease;
}

.vt-nav:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(20, 26, 34, 0.92);
}

.vt-nav-left {
  left: 18px;
}

.vt-nav-right {
  right: 18px;
}

.vt-info {
  position: absolute;
  inset: 0;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.vt-info.is-open {
  opacity: 1;
  pointer-events: none;
}

.vt-info.is-open {
  opacity: 1;
  pointer-events: none;
}

.vt-info-card {
  position: absolute;
  top: 30px;
  left: 50%;
  width: min(460px, calc(100% - 80px));
  transform: translateX(-50%);
  pointer-events: none;
}

.vt-info-image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.65s ease, box-shadow 0.65s ease;
  transform-origin: top left;
}

.vt-info-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 15px;
  pointer-events: auto;
}

.vt-info-body {
  position: absolute;
  top: 58%;
  left: 50%;
  width: min(560px, calc(100% - 80px));
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.vt-info-title {
  width: fit-content;
  margin: 0 auto 10px;
  padding: 0.08em 0.3em;
  border-radius: 0.14em;
  background: rgba(64, 78, 93, 0.58);
  font-family: var(--font-vollkorn);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.65),
    0 0 18px rgba(0, 0, 0, 0.45);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.vt-info-desc {
  width: fit-content;
  margin: 0 auto;
  padding: 0.1em 0.3em;
  border-radius: 0.14em;
  background: rgba(64, 78, 93, 0.58);
  font-family: var(--font-cormorant);
  font-size: 30px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.78),
    0 0 24px rgba(0, 0, 0, 0.52);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* =========================
   RESPONSIVE <= 1360px
   ========================= */

@media (max-width: 1360px) {
  .trezor-nav {
    gap: 18px;
  }

  .banner-nav .nav-link {
    gap: 6px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .products-mega {
    left: 12px;
    right: 12px;
  }

  .products-mega-inner {
    padding: 12px;
  }

  .services-mega-grid {
    gap: 10px;
    align-items: stretch;
  }

  .service-mega-card {
    grid-template-columns: 1fr;
    gap: 10px;
    min-width: 0;
    padding: 10px;
    align-content: start;
  }

  .service-mega-image-wrap {
    aspect-ratio: 2.1 / 1;
    max-height: 160px;
    border-radius: 12px;
  }

  .service-mega-content h3 {
    margin-bottom: 6px;
    font-size: 0.9rem;
    line-height: 1.15;
  }

  .service-mega-content p {
    font-size: 0.88rem;
    line-height: 1.35;
  }
}

/* =========================
   RESPONSIVE <= 900px
   ========================= */

@media (max-width: 900px) {
  .site-banner,
  .site-banner.trezor-banner {
    top: 10px;
    left: 10px;
    right: 10px;
    height: 64px;
    padding: 0 16px;
    border-radius: 22px;
    grid-template-columns: auto 1fr auto;
  }

  .trezor-nav,
  .banner-nav {
    display: none;
  }

  .banner-logo {
    height: 28px;
  }

  .banner-right {
    gap: 8px;
  }

  .lang-link {
    width: 26px;
    height: 26px;
  }

  .lang-link img {
    width: 20px;
    height: 20px;
  }

  .burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin-inline: auto;
    background: #1c1d19;
    border-radius: 999px;
  }

  .products-mega {
    display: none !important;
  }

  .mobile-menu {
    position: fixed;
    top: 82px;
    left: 10px;
    right: 10px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px 26px 26px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(244, 244, 242, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .mobile-menu a {
    padding-left: 0;
    color: #191919;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
  }

  .page-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 88px;
  }

  .page-container::before {
    top: calc(100svh - 110px);
  }

  .site-notice {
    top: 92px;
    right: 14px;
  }

  .arrow-container.back-to-top-container {
    left: 0;
    right: 0;
    bottom: 14px;
    justify-content: center;
  }

  .global-arrow {
    width: 50px;
    height: 50px;
  }

  .global-arrow-up::after {
    font-size: 24px;
  }

  .home-section {
    min-height: 100svh;
    padding-bottom: 110px;
    overflow: visible;
  }

  .hero-title-block {
    position: static;
    margin: 0;
    padding-top: 10vh;
    padding-inline: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-eyebrow {
    margin-bottom: 0.4rem;
    font-size: 1.6rem;
    color: rgba(215, 235, 245, 0.95);
    text-shadow:
      0 1px 6px rgba(0, 0, 0, 0.65),
      0 0 20px rgba(255, 255, 255, 0.15);
  }

  .hero-title {
    font-size: clamp(2.3rem, 9vw, 3.1rem);
    letter-spacing: 0.22em;
    color: #f6f8f9;
    text-shadow:
      0 2px 12px rgba(0, 0, 0, 0.85),
      0 0 40px rgba(255, 255, 255, 0.12);
  }

  .hero-divider {
    width: 60%;
    height: 1px;
    margin-top: 0.3rem;
    background: linear-gradient(
      to right,
      transparent,
      rgba(255, 255, 255, 0.65),
      transparent
    );
  }

  .section-inner {
    position: relative;
    left: 0;
    width: 100%;
    max-width: none;
    min-height: auto;
    padding-bottom: 64px;
    transform: none;
  }

  section {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .intro-text {
    font-size: 25px;
  }

  .guestbook-consent {
    gap: 10px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .services-mega-grid {
    grid-template-columns: 1fr;
  }

  .service-mega-card {
    grid-template-columns: 1fr;
  }

  .service-mega-image-wrap {
    aspect-ratio: 1.8 / 1;
  }

  .tours-window-article {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 18px;
  }

  .tours-window-topbar {
    height: 56px;
    padding: 0 64px 0 16px;
  }

  .tours-window-topbar h2 {
    font-size: 15px;
    letter-spacing: 0.1em;
  }

  .tours-window-frame {
    inset: 56px 0 0 0;
    height: calc(100% - 56px);
  }

  .tours-window-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
  }

  .guide-article {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 18px;
  }

  .guide-shell {
    padding: 24px 16px 22px;
  }

  .guide-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .guide-photo-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .guide-intro h2 {
    font-size: 24px;
  }

  .guide-lead {
    font-size: 22px;
  }

  .guide-body-text {
    font-size: 21px;
  }

  .guide-quote p {
    font-size: 21px;
  }

  .vt-article {
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    margin: 10px auto;
    border-radius: 18px;
  }

  .vt-map-stage {
    inset: 122px 0 0 0;
  }

  .vt-nav {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .vt-nav-left {
    left: 10px;
  }

  .vt-nav-right {
    right: 10px;
  }

  .vt-info-card {
    top: 12px;
    width: min(320px, calc(100% - 24px));
  }

  .vt-info-image {
    height: 210px;
  }

  .vt-info-body {
    width: min(320px, calc(100% - 24px));
    top: 54%;
  }

  .vt-info-title {
    font-size: 18px;
  }

  .vt-info-desc {
    font-size: 22px;
  }
}

/* =========================
   RESPONSIVE <= 768px
   ========================= */

@media (max-width: 768px) {
  :root {
    --section-padding-y: 0px;
  }
}

/* =========================
   RESPONSIVE 701-950 / LOW HEIGHT
   ========================= */

@media (min-width: 701px) and (max-width: 950px) and (max-height: 600px) {
  .hero-title-block {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    width: max-content;
    margin-inline: auto;
    text-align: center;
  }

  .hero-eyebrow {
    margin-bottom: 6px;
    font-size: 22px;
    letter-spacing: 0.22em;
  }

  .intro-text {
    font-size: 25px;
    line-height: 1.45;
  }

  .home-section {
    padding-bottom: 95px;
  }

  .page-container::before {
    top: calc(100vh - 95px);
  }
}

/* =========================
   RESPONSIVE 1200-1400
   ========================= */

@media (min-width: 1200px) and (max-width: 1400px) {
  .hero-title {
    font-size: clamp(28px, 1vw, 56px);
  }

  .hero-eyebrow {
    font-size: 25px;
    letter-spacing: 0.16em;
  }

  .section-header h2 {
    font-size: 20px;
    line-height: 1.05;
  }

  .section-title-icon {
    width: 36px;
  }

  .intro-text {
    font-size: 25px;
    line-height: 1.5;
  }
}
.page-bg-media {
  display: none;
}

body {
  background: #050608 url("images/anssi1.jpg") center center / cover no-repeat fixed;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.24),
    rgba(0, 0, 0, 0.12)
  );
  z-index: -2;
  pointer-events: none;
}


.vt-info-card {
  width: min(560px, calc(100% - 60px));
}

.vt-info-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);

  opacity: 0;
  transition:
    opacity 0.45s ease,
    transform 0.65s ease,
    box-shadow 0.65s ease;
}
.vt-map-base {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 108%;
  display: block;
}

.vt-info-image.is-visible {
  opacity: 1;
}
@media (max-width: 900px) {
  body {
    background: none;
  }

  .page-bg-media {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
    background: #050608;
  }

  .page-bg-video {
    display: none;
  }

  .page-bg-overlay,
  .page-bg-vignette {
    display: none;
  }

  .page-bg-media::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100vh;
    height: 100vw;
    background: url("images/anssi1.jpg") center center / contain no-repeat;
    transform: translate(-50%, -50%) rotate(90deg) scale(1.02);
    transform-origin: center center;
  }

  .home-section {
    min-height: 100svh;
    position: relative;
    justify-content: flex-end;
    padding-bottom: 72px;
  }

  .hero-image-wrap {
    transform: translateY(0);
  }
.hero-title-block {
  position: absolute;
  left: 50%;
  bottom: 190px;
  width: calc(100% - 40px);
  transform: translateX(-50%);
  margin-top: 0;
  text-align: center;
  pointer-events: none;
  z-index: 20;
}
  .hero-eyebrow {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    letter-spacing: 0.14em;
    line-height: 1.02;
  }

  .hero-divider {
    width: min(220px, 58%);
    margin-top: 0.45rem;
  }
  .virtual-trail-section {
    margin-top: 156px;
}

}
.contact-section,
.contact-section .contact-inner,
.contact-section .section-inner {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background-image: none !important;
}
.vt-overlay{
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: none;
}


.vt-overlay.is-open{
  display: block;
}

.vt-backdrop{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.vt-article{
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .hero-image-wrap {
    transform: translateY(50px);
  }

  .hero-image {
    max-width: 82%;
  }

  .hero-title-block {
    bottom: 70px;
  }
}