:root {
  --bg: #eef6f7;
  --paper: #ffffff;
  --paper-soft: #f7fbfb;
  --dark: #102a43;
  --muted: #64748b;
  --line: rgba(16, 42, 67, 0.12);

  --blue: #1f5eff;
  --deep-blue: #073b8e;
  --ice: #dff7ff;
  --snow: #ffffff;
  --pine: #0f4c3a;
  --gold: #d7a84f;

  --mix: linear-gradient(135deg, var(--deep-blue), var(--blue), var(--pine));
  --shadow: 0 28px 80px rgba(7, 59, 142, 0.14);
  --shadow2: 0 16px 45px rgba(16, 42, 67, 0.1);

  --radius: 30px;
  --max: 1200px;
}

* {
  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 top left, rgba(31, 94, 255, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(15, 76, 58, 0.14), transparent 34%),
    linear-gradient(180deg, #f9ffff 0%, var(--bg) 48%, #f3f8ff 100%);
  line-height: 1.7;
}

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

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

/* Header */

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

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

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

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

.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, transparent 44%, white 44%, white 56%, transparent 56%),
    linear-gradient(180deg, transparent 44%, white 44%, white 56%, transparent 56%),
    var(--deep-blue);
  box-shadow: 0 14px 35px rgba(7, 59, 142, 0.24);
}

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

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

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

.nav-btn {
  background: var(--mix);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(31, 94, 255, 0.22);
}

/* Hero */

.hero {
  padding: 82px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

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

.hero-card {
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 94, 255, 0.28), transparent 68%);
}

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

.hero-main::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(7, 59, 142, 0.14);
  border-radius: 28px;
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(31, 94, 255, 0.1);
  color: var(--deep-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

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

h1 {
  max-width: 820px;
  margin: 18px 0 22px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.08em;
  text-transform: lowercase;
  color: var(--deep-blue);
}

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

h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

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

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

.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.mini-list div {
  padding: 18px;
  border-radius: 22px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
}

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

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

/* Sections */

section {
  padding: 70px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

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

.soft-panel {
  background:
    linear-gradient(180deg, rgba(223,247,255,0.78), rgba(255,255,255,0.92));
  position: sticky;
  top: 112px;
}

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

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

.info-box {
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  margin-top: 16px;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.06);
}

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

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

/* Cards */

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

.card {
  border-radius: 28px;
  padding: 30px;
  transition: 0.3s ease;
}

.card:hover,
.hotel-card:hover {
  transform: translateY(-7px);
  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: 30px;
  padding: 30px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  background:
    linear-gradient(180deg, #ffffff, #f6fbff);
}

.hotel-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(31, 94, 255, 0.11);
}

.hotel-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--deep-blue);
  color: #fff;
  font-weight: 900;
  margin-bottom: 48px;
  box-shadow: 0 14px 30px rgba(7, 59, 142, 0.22);
}

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

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

/* Footer */

.footer {
  padding: 42px 0;
  background:
    linear-gradient(135deg, #061c36, #073b8e 55%, #0f4c3a);
  color: #fff;
}

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 18px;
  justify-content: center;
}

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

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

.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: 38px;
  }

  .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: 44px;
  }

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

  h1 {
    font-size: 44px;
  }

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