:root {
  --bg: #f7f9fb;
  --paper: #ffffff;
  --paper-soft: #fffafa;
  --dark: #172033;
  --muted: #667085;
  --line: rgba(23, 32, 51, 0.12);

  --red: #d71920;
  --deep-red: #9f1117;
  --maple: #ef3e42;
  --ice-blue: #dff4ff;
  --lake-blue: #1f78b4;
  --deep-blue: #102a43;
  --snow: #ffffff;
  --cream: #fff3e8;
  --pine: #1f6f50;
  --gold: #d6a84f;

  --mix: linear-gradient(135deg, var(--deep-red), var(--red), var(--lake-blue));
  --mix-warm: linear-gradient(135deg, var(--deep-red), var(--maple), var(--gold));
  --shadow: 0 30px 90px rgba(159, 17, 23, 0.16);
  --shadow2: 0 18px 48px rgba(23, 32, 51, 0.1);

  --radius: 34px;
  --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 10% 10%, rgba(215, 25, 32, 0.15), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(31, 120, 180, 0.18), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(31, 111, 80, 0.12), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #fff1f1 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.84);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(23, 32, 51, 0.1);
}

.header-inner {
  min-height: 90px;
  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-red);
}

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

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 19px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,0.95) 0 8%, transparent 9%),
    linear-gradient(90deg, transparent 43%, rgba(255,255,255,0.9) 43%, rgba(255,255,255,0.9) 57%, transparent 57%),
    linear-gradient(180deg, transparent 43%, rgba(255,255,255,0.9) 43%, rgba(255,255,255,0.9) 57%, transparent 57%),
    var(--mix);
  box-shadow: 0 16px 36px rgba(215, 25, 32, 0.26);
}

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

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

nav a:hover {
  background: rgba(215, 25, 32, 0.1);
  color: var(--red);
}

.nav-btn {
  background: var(--mix);
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(215, 25, 32, 0.24);
}

.nav-btn:hover {
  background: var(--mix-warm);
}

/* Hero */

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

.hero-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 32px;
  align-items: stretch;
}

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

.hero-card {
  border-radius: var(--radius);
  padding: 38px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,243,243,0.92));
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 25, 32, 0.22), transparent 68%);
}

.hero-card::after {
  content: "";
  position: absolute;
  left: -75px;
  top: -85px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 120, 180, 0.16), transparent 70%);
}

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

.hero-main::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 25, 32, 0.2), transparent 66%);
  pointer-events: none;
}

.hero-main::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(215, 25, 32, 0.18);
  border-radius: 32px;
  pointer-events: none;
}

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

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(215, 25, 32, 0.14);
}

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

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

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

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: 15px;
  margin-top: 28px;
}

.mini-list div {
  padding: 19px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff, var(--paper-soft));
  border: 1px solid var(--line);
}

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

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

/* Sections */

section {
  padding: 74px 0;
}

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

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

.soft-panel {
  background:
    linear-gradient(180deg, rgba(223,244,255,0.86), rgba(255,255,255,0.96)),
    radial-gradient(circle at top right, rgba(215,25,32,0.18), transparent 44%);
  position: sticky;
  top: 114px;
}

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

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

.info-box {
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  margin-top: 17px;
  box-shadow: 0 14px 30px rgba(23, 32, 51, 0.06);
}

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

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

/* Cards */

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

.card {
  border-radius: 31px;
  padding: 33px;
  transition: 0.3s ease;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,250,250,0.96));
}

.card:hover,
.hotel-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
  border-color: rgba(215, 25, 32, 0.28);
}

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

.card p {
  margin-bottom: 0;
}

/* Hotel Cards */

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

.hotel-card {
  border-radius: 33px;
  padding: 33px;
  min-height: 270px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fbff 48%, #fff0f0 100%);
}

.hotel-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(215, 25, 32, 0.18);
}

.hotel-card::before {
  content: "";
  position: absolute;
  left: -52px;
  top: -52px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(31, 120, 180, 0.12);
}

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

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

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

/* Footer */

.footer {
  padding: 46px 0;
  background:
    radial-gradient(circle at top left, rgba(215,25,32,0.3), transparent 32%),
    radial-gradient(circle at bottom right, rgba(31,120,180,0.26), transparent 32%),
    linear-gradient(135deg, #2b0709, #9f1117 46%, #d71920);
  color: #fff;
}

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

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

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

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

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

.footer-links span {
  background: #ffffff;
  color: var(--deep-red);
  border-color: transparent;
}

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

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

  .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;
  }

  .logo {
    text-align: left;
  }
}