@font-face {
  font-family: 'Bulmer Italic';
  src: url('../fonts/Bulmer Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #dbaa3c;
  --gold-light: #dbaa3c;
  --dark: #0D0D0D;
  --dark-card: #141414;
  --dark-surface: #1A1A1A;
  --text-muted: #ffffff;
  --text-light: #ffffff;
  --white: #fff;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.nav-logo,
.hero-title,
.section-title,
.companions-header-left h2,
.card-name,
.dest-label,
.step h3,
.safety-content h2 {
  letter-spacing: -2px;
}

.hero-title,
.section-title,
.companions-header-left h2,
.step h3,
.safety-content h2 {
  font-weight: 700;
}

.companions-header-left h2 {
  letter-spacing: -3px;
}

button {
  border-radius: 30px;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 150px;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

nav.nav-scrolled {
  background: rgba(10,10,10,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  font-family: 'Bulmer Italic', serif;
  font-size: 25px;
  font-weight: 600;
  color: var(--white);
}

.nav-logo-icon {
  width: 25px; height: 25px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #000; font-weight: 700;
}

.nav-logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: #111;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.18);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 201;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: opacity 0.2s ease;
}

.hamburger-line {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-top {
  transform: translateY(0) rotate(0deg);
  transform-origin: 12px 8px;
}

.hamburger-middle {
  opacity: 1;
}

.hamburger-bottom {
  transform: translateY(0) rotate(0deg);
  transform-origin: 12px 16px;
}

.nav-toggle.is-active .hamburger-top {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-active .hamburger-middle {
  opacity: 0;
}

.nav-toggle.is-active .hamburger-bottom {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-separator {
  color: rgba(255,255,255,0.9);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}

.btn-ghost {
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; font-weight: 400;
  color: var(--text-light);
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover { 
  background: var(--gold-light); 
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(219,170,60,0.3);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 100px;
  overflow: hidden;
}

.hero-content {
  animation: fadeInUp 1.2s ease-out;
}

.hero-badge {
  animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-title {
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-sub {
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-buttons {
  animation: fadeInUp 1.2s ease-out 0.8s both;
}

.hero-scroll {
  animation: fadeInUp 1.2s ease-out 1s both;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero.png') center center / cover no-repeat;
  filter: brightness(0.38);
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Bulmer Italic', serif;
  font-size: clamp(52px, 8vw, 82px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.hero-title span {
  display: inline-block;
  font-style: italic;
  background: linear-gradient(90deg, #fff0b8 0%, #f4d57a 22%, #dbaa3c 55%, #f8e09a 78%, #b97f1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 38px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover { 
  border-color: rgba(255,255,255,0.85); 
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.btn-gold-lg {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-gold-lg:hover { 
  background: var(--gold-light); 
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(219,170,60,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll span {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  display: block;
}

/* ── SECTION COMMON ── */
section { padding: 100px 150px; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: 'Bulmer Italic', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── FEATURED COMPANIONS ── */
.companions {
  background: var(--dark);
  padding: 110px 150px;
}

.companions-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}

.companions-header-left h2 {
  font-family: 'Bulmer Italic', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -3px;
  margin-bottom: 6px;
}

.companions-header-left p {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 300;
}

.view-all {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.view-all:hover { opacity: 0.75; }

.companions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 640px;
}

.companion-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #0f0f0f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.companion-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.companion-card img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.companion-card:hover img { transform: scale(1.04); }

.companion-card.elena  { grid-column: 1 / 3; grid-row: 1 / 3; }
.companion-card.marcus { grid-column: 3; grid-row: 1; }
.companion-card.sofia  { grid-column: 4; grid-row: 1; }
.companion-card.julian { grid-column: 3 / 5; grid-row: 2; }

.card-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
}

.card-info {
  position: absolute;
  bottom: 16px; left: 16px;
}

.card-name {
  font-family: 'Bulmer Italic', serif;
  font-size: 25px;
  font-weight: 600;
  color: var(--white);
}

.card-rating {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(187,187,187,0.38);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-rating::before {
  content: '★';
  color: var(--gold);
  font-size: 11px;
}

.card-location {
  position: absolute;
  left: 16px;
  bottom: 52px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── DESTINATIONS ── */
.destinations { background: var(--dark); }

.destinations-strip {
  display: flex;
  gap: 12px;
  overflow: visible;
}

.dest-card {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1 / 1.5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.72);
}

.dest-card:hover img { transform: scale(1.06); filter: brightness(0.85); }

.dest-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bulmer Italic', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

/* ── HOW IT WORKS ── */
.how { background: var(--dark-surface); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.step-icon {
  width: 60px; height: 60px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 22px;
}

.step h3 {
  font-family: 'Bulmer Italic', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
}

.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 220px;
}

/* ── SAFETY ── */
.safety { background: var(--dark); padding: 60px; }

.safety-card {
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.safety-content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.safety-content h2 {
  font-family: 'Bulmer Italic', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 36px;
  font-weight: bold;
  letter-spacing: -3px;
}

.safety-content h2 span {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.safety-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.safety-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.safety-shield {
  width: 24px;
  height: 24px;
  background: rgba(219,170,60,0.2);
  border: 1px solid rgba(219,170,60,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.safety-shield svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.safety-list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.safety-list p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.safety-image {
  position: relative;
  overflow: hidden;
  padding: 0px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safety-image img {
  width: 90%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
  border-radius: 16px;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--dark-surface); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  aspect-ratio: 1.32 / 1;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.5);
}

.stars {
  display: flex;
  gap: 4px;
}

.stars span {
  color: #f0c93b;
  font-size: 35px;
  letter-spacing: -7px;
}

.testimonial-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-light);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
}

.testimonial-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 150px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-www {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.footer-www img {
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.footer-www:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

.footer-www:hover img { opacity: 1; }

.social-btn {
  width: 36px; height: 36px;
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}

.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--text-light); }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  margin: 0 150px;
}

/* ── ANIMATIONS ── */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(219, 170, 60, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(219, 170, 60, 0);
  }
}

/* Animation classes */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

.animate-delay-3 {
  animation-delay: 0.6s;
}

.animate-delay-4 {
  animation-delay: 0.8s;
}

/* Initial hidden state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll-scale.animate {
  opacity: 1;
  transform: scale(1);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 16px 48px; }
  .nav-right { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    padding: 20px;
    border: none;
    border-radius: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: none;
    display: none;
    flex-direction: column;
    z-index: 200;
  }
  .mobile-nav.is-open {
    display: flex;
    animation: slideInFromRight 0.3s ease-out;
  }
  .mobile-nav-links,
  .mobile-nav-actions {
    list-style: none;
    display: flex;
    flex-direction: column;
  }
  .mobile-nav-links {
    gap: 20px;
    margin-bottom: 32px;
    margin-top: 20px;
    flex: 1;
  }
  .mobile-nav-links a,
  .mobile-nav-actions a {
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
  }
  .mobile-nav-actions {
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
  }
  .mobile-action-btn,
  .mobile-action-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
  }
  .mobile-action-btn {
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
  }
  .mobile-action-primary {
    background: var(--gold);
    color: #111;
  }
  section { padding: 70px 72px; }
  .companions { padding: 70px 72px; }
  .safety { padding: 40px 72px; }
  footer { padding: 48px 72px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .companions-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; height: 520px; }
  .companion-card img { object-fit: cover; object-position: center 22%; }
  .companion-card.elena  { grid-column: 1; grid-row: 1 / 3; }
  .companion-card.marcus { grid-column: 2; grid-row: 1; }
  .companion-card.sofia  { grid-column: 2; grid-row: 2; }
  .companion-card.julian { grid-column: 1 / 3; grid-row: 3; height: 220px; }
  .safety-card { grid-template-columns: 1fr; }
  .safety-image { padding: 24px; min-height: 280px; }
  .safety-image img { width: 88%; max-height: 260px; }
  .safety-content { padding: 40px 32px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 44px; }
  nav { padding: 14px 20px; }
  section { padding: 64px 20px; }
  .companions { padding: 64px 20px; }
  .safety { padding: 34px 20px; }
  footer { padding: 42px 20px 24px; }
  .companions-grid { grid-template-columns: 1fr; height: auto; }
  .companion-card img { object-fit: cover; object-position: center 20%; }
  .companion-card.elena, .companion-card.marcus, .companion-card.sofia { grid-column: 1; grid-row: auto; height: 240px; }
  .companion-card.julian { grid-column: 1; grid-row: auto; height: 200px; }
  .destinations-strip { flex-direction: column; }
  .dest-card { aspect-ratio: 1 / 1.2; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { aspect-ratio: auto; }
  .safety-image { padding: 16px; min-height: 220px; }
  .safety-image img { width: 100%; max-height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
}
