:root {
  --bg: #edf7f5;
  --paper: #ffffff;
  --paper-soft: #f6fbfa;
  --dark: #11263a;
  --muted: #667985;
  --line: rgba(17, 38, 58, 0.12);

  --blue: #246bfe;
  --deep-blue: #062f6f;
  --ice: #e2f8ff;
  --snow: #ffffff;
  --forest: #0d5748;
  --mint: #dff7ef;
  --gold: #d8a952;
  --sand: #fff6df;

  --mix: linear-gradient(135deg, var(--deep-blue), var(--blue), var(--forest));
  --soft-mix: linear-gradient(135deg, rgba(226, 248, 255, 0.9), rgba(223, 247, 239, 0.85));
  --shadow: 0 30px 85px rgba(6, 47, 111, 0.16);
  --shadow2: 0 18px 46px rgba(17, 38, 58, 0.09);

  --radius: 32px;
  --max: 1210px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at 8% 6%, rgba(36, 107, 254, 0.15), transparent 32%),
    radial-gradient(circle at 92% 4%, rgba(13, 87, 72, 0.16), transparent 33%),
    radial-gradient(circle at 50% 100%, rgba(216, 169, 82, 0.12), transparent 38%),
    linear-gradient(180deg, #fbffff 0%, var(--bg) 52%, #f6fbff 100%);
  line-height: 1.72;
}

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

.container {
  width: min(100% - 38px, var(--max));
  margin: 0 auto;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 255, 255, 0.84);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--deep-blue);
}

.logo small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--muted);
  margin-top: -2px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.95) 0 8%, transparent 9%),
    linear-gradient(135deg, var(--blue), var(--deep-blue) 58%, var(--forest));
  box-shadow: 0 16px 36px rgba(6, 47, 111, 0.24);
  position: relative;
}

.logo-icon::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.82);
}

nav {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
}

nav a {
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  color: var(--dark);
  transition: 0.25s ease;
}

nav a:hover {
  background: var(--ice);
  color: var(--deep-blue);
  transform: translateY(-2px);
}

.nav-btn {
  background: var(--mix);
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(36, 107, 254, 0.23);
}

/* Hero */

.hero {
  padding: 88px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: stretch;
}

.hero-card,
.hero-main,
.panel,
.card,
.hotel-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow2);
}

.hero-card {
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,251,250,0.9));
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -70px -95px auto;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 87, 72, 0.22), transparent 70%);
}

.hero-card::after {
  content: "";
  position: absolute;
  left: -45px;
  top: -45px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 107, 254, 0.12), transparent 72%);
}

.hero-main {
  border-radius: calc(var(--radius) + 14px);
  padding: 58px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(226,248,255,0.73), rgba(223,247,239,0.55)),
    url("images/finland-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-main::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(6, 47, 111, 0.14);
  border-radius: 30px;
  pointer-events: none;
}

.hero-main > *,
.hero-card > * {
  position: relative;
  z-index: 1;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(36, 107, 254, 0.1);
  color: var(--deep-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(216, 169, 82, 0.16);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 830px;
  margin: 20px 0 24px;
  font-size: clamp(43px, 7vw, 86px);
  line-height: 0.93;
  letter-spacing: -0.085em;
  text-transform: lowercase;
  color: var(--deep-blue);
}

h2 {
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--deep-blue);
}

h3 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.038em;
}

p {
  color: var(--muted);
}

.hero-main p {
  max-width: 770px;
  font-size: 17px;
}

.mini-list {
  display: grid;
  gap: 15px;
  margin-top: 28px;
}

.mini-list div {
  padding: 19px;
  border-radius: 24px;
  background: rgba(246, 251, 250, 0.92);
  border: 1px solid var(--line);
  transition: 0.25s ease;
}

.mini-list div:hover {
  transform: translateX(5px);
  background: var(--ice);
}

.mini-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--dark);
}

.mini-list span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

/* Sections */

section {
  padding: 74px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 30px;
  align-items: start;
}

.panel {
  border-radius: var(--radius);
  padding: 44px;
}

.soft-panel {
  background:
    linear-gradient(180deg, rgba(226,248,255,0.8), rgba(223,247,239,0.66), rgba(255,255,255,0.94));
  position: sticky;
  top: 116px;
}

.section-title {
  margin-bottom: 32px;
}

.section-title.center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.info-box {
  padding: 23px;
  border-radius: 25px;
  background: #fff;
  border: 1px solid var(--line);
  margin-top: 17px;
  box-shadow: 0 13px 30px rgba(17, 38, 58, 0.06);
  transition: 0.25s ease;
}

.info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(17, 38, 58, 0.1);
}

.info-box h3 {
  margin-bottom: 8px;
  color: var(--forest);
}

.info-box p {
  margin-bottom: 0;
}

/* Cards */

.cards,
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  border-radius: 30px;
  padding: 32px;
  transition: 0.3s ease;
  background:
    linear-gradient(180deg, #ffffff, #f8fcfc);
}

.card:hover,
.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--deep-blue);
}

.card p {
  margin-bottom: 0;
}

/* Hotel Cards */

.hotel-grid {
  grid-template-columns: repeat(4, 1fr);
}

.hotel-card {
  border-radius: 32px;
  padding: 32px;
  min-height: 270px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  background:
    linear-gradient(180deg, #ffffff, #f5fbff 60%, #f2fbf7);
}

.hotel-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(36, 107, 254, 0.1);
}

.hotel-card::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 92px;
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
}

.hotel-card span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--mix);
  color: #fff;
  font-weight: 900;
  margin-bottom: 50px;
  box-shadow: 0 15px 32px rgba(6, 47, 111, 0.24);
}

.hotel-card h3 {
  color: var(--forest);
}

.hotel-card p {
  margin-bottom: 0;
}

/* Footer */

.footer {
  padding: 46px 0;
  background:
    radial-gradient(circle at top left, rgba(216, 169, 82, 0.2), transparent 30%),
    linear-gradient(135deg, #06172d, #062f6f 56%, #0d5748);
  color: #fff;
}

.footer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.83);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 14px 0 20px;
  justify-content: center;
}

.footer-links a,
.footer-links span {
  padding: 9px 15px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
  font-size: 14px;
  font-weight: 850;
}

.footer-links a:hover {
  background: rgba(255,255,255,0.12);
}

.footer-links span {
  background: var(--gold);
  color: #11263a;
}

.small {
  font-size: 13px;
  margin-bottom: 0;
}

/* Responsive */

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .cards,
  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .soft-panel {
    position: static;
  }

  .hero-main {
    padding: 40px;
  }

  .header-inner {
    flex-direction: column;
    padding: 18px 0;
  }

  nav {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding-top: 46px;
  }

  .hero-card,
  .hero-main,
  .panel,
  .card,
  .hotel-card {
    padding: 24px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  nav a {
    font-size: 13px;
    padding: 8px 10px;
  }
}