* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1f2a;
  --muted: #5f6677;
  --accent: #1c5b7a;
  --accent-2: #c48b3a;
  --soft: #f4f1ec;
  --line: #e2e6ea;
  --dark: #0e1118;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 240px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 18, 0.45);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  padding: 100px 0 80px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-card {
  flex: 0 1 320px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 20px;
  backdrop-filter: blur(6px);
}

.hero-card p {
  margin: 0 0 14px;
  color: #e8edf4;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #1c1407;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.section {
  padding: 80px 0;
}

.section-soft {
  background: var(--soft);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.offset-block {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 26px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(16, 24, 40, 0.08);
}

.image-frame {
  background-color: #dbe4ea;
  padding: 12px;
}

.card-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.floating-note {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 18px;
  margin-left: auto;
  max-width: 360px;
}

.services-list {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.form-wrap {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row input,
.form-row select,
textarea {
  flex: 1 1 220px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.testimonial {
  flex: 1 1 240px;
  font-style: italic;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 999;
}

.footer {
  background: var(--dark);
  color: #f0f3f7;
  padding: 50px 0 80px;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer a {
  color: #f0f3f7;
}

.legal-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 16px 0;
  z-index: 1000;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.bg-itinerary {
  background-image: url("https://images.unsplash.com/photo-1473625247510-8ceb1760943f?w=800&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-itinerary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 32, 0.55);
}

.bg-content {
  position: relative;
  z-index: 1;
}

.bg-guide {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=800&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-guide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 30, 40, 0.6);
}

.note-pill {
  background: #ffffff;
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-hero {
  padding: 70px 0 40px;
}

.page-hero h1 {
  margin-top: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f0f4f8;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  padding: 20px;
  background: #ffffff;
}

.muted {
  color: var(--muted);
}
