:root {
  --primary: #2329c5;
  --primary-dark: #131753;
  --secondary: #f4f7ff;
  --text: #18202f;
  --muted: #5d6575;
  --white: #ffffff;
  --border: rgba(24, 32, 47, 0.08);
  --shadow: 0 18px 60px rgba(17, 24, 39, 0.12);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfdff 0%, #f6f8ff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.soft { background: linear-gradient(135deg, rgba(35,41,197,.08), rgba(255,255,255,.94)); }
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.brand img { width: 170px; border-radius: 12px; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.quick-call, .lang-btn, .menu-toggle {
  border: 1px solid var(--border); background: #fff; color: var(--text);
  border-radius: 999px; padding: 10px 14px; cursor: pointer; font-weight: 600;
}
.lang-switcher { display: flex; gap: 6px; }
.lang-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.menu-toggle { display: none; }
.nav { display: flex; gap: 22px; font-size: 0.97rem; font-weight: 600; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--primary); }
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,14,33,.78) 0%, rgba(16,20,63,.40) 45%, rgba(16,20,63,.08) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 110px 0 90px; color: #fff; }
.eyebrow, .mini-kicker, .section-title span {
  display: inline-block; padding: 8px 14px; border-radius: 999px; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
}
.eyebrow { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); }
.hero h1, .section-title h2, .tailor h2 {
  font-family: 'Cormorant Garamond', serif; line-height: .96; margin: 18px 0;
}
.hero h1 { font-size: clamp(3rem, 6vw, 6rem); max-width: 780px; }
.hero-text { max-width: 680px; font-size: 1.08rem; line-height: 1.8; color: rgba(255,255,255,.92); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 14px 22px; font-weight: 700; transition: .25s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.24); }
.hero-badges { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges span {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 10px 14px;
}
.intro-strip { margin-top: -42px; position: relative; z-index: 2; }
.intro-grid {
  display: grid; grid-template-columns: 1.4fr .9fr; gap: 20px; align-items: center;
}
.lead {
  font-size: clamp(1.3rem, 2.3vw, 2rem); line-height: 1.4; margin: 0;
  background: #fff; border-radius: 28px; box-shadow: var(--shadow); padding: 28px;
}
.intro-card { background: var(--primary); color: #fff; border-radius: 28px; padding: 28px; box-shadow: var(--shadow); }
.about, .signature, .tailor, .video-section, .gallery, .reviews, .contact { padding: 88px 0; }
.section-title { margin-bottom: 30px; }
.section-title.center { text-align: center; }
.section-title span, .mini-kicker {
  background: rgba(35,41,197,.08); color: var(--primary); border: 1px solid rgba(35,41,197,.14);
}
.section-title h2, .tailor h2 { font-size: clamp(2.5rem, 4vw, 4.3rem); max-width: 800px; }
.section-title.center h2 { margin-left: auto; margin-right: auto; }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 30px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image { border-radius: 28px; box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }
.about-copy { padding: 34px; }
.about-copy p { line-height: 1.85; color: var(--muted); }
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.feature-list li {
  background: var(--secondary); padding: 14px 16px; border-radius: 16px; font-weight: 600;
}
.signature-grid, .tours-grid, .reviews-grid, .contact-grid { display: grid; gap: 24px; }
.signature-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 24px; }
.icon-card { padding: 28px; }
.icon-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.icon-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.tours-grid { grid-template-columns: repeat(3, 1fr); }
.tour-card { overflow: hidden; }
.tour-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.tour-content { padding: 24px; }
.tour-time {
  display: inline-block; background: rgba(35,41,197,.08); color: var(--primary);
  padding: 8px 12px; border-radius: 999px; font-size: .83rem; font-weight: 700;
}
.tour-content h3 { font-size: 1.3rem; margin: 14px 0 10px; }
.tour-content p { margin: 0; color: var(--muted); line-height: 1.8; }
.tailor-grid {
  padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start;
}
.tailor p { color: var(--muted); line-height: 1.8; }
.tailor-points { display: grid; gap: 22px; }
.tailor-points h3 { margin: 0 0 8px; }
.video-wrap { padding: 16px; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 18px; }
.video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.gallery-item {
  padding: 0; border: 0; background: transparent; border-radius: 24px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; transition: transform .35s ease; }
.gallery-item.tall img { aspect-ratio: 1 / 1.35; }
.gallery-item:hover img { transform: scale(1.04); }
.reviews-grid { grid-template-columns: .9fr 1.1fr; align-items: stretch; }
.reviews-copy, .contact-card, .form-card { padding: 30px; }
.reviews-copy p, .contact-card p { color: var(--muted); line-height: 1.8; }
.review-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.map-embed { overflow: hidden; min-height: 420px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.contact-grid { grid-template-columns: .85fr 1.15fr; }
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 15px 16px; border-radius: 16px; border: 1px solid var(--border); background: #fff;
}
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; width: 60px; height: 60px;
  border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 15px 35px rgba(37,211,102,.35); z-index: 60;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.lightbox {
  position: fixed; inset: 0; background: rgba(8,10,20,.9); display: none; align-items: center; justify-content: center; padding: 20px; z-index: 80;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; border-radius: 18px; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 2rem; cursor: pointer;
}
.footer { padding: 26px 20px 42px; text-align: center; color: var(--muted); }
.footer a { color: var(--primary); font-weight: 700; }

@media (max-width: 1024px) {
  .nav { position: fixed; top: 78px; left: 16px; right: 16px; display: none; flex-direction: column; background: #fff; padding: 18px; border-radius: 22px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .intro-grid, .about-grid, .tailor-grid, .reviews-grid, .contact-grid, .signature-grid, .tours-grid { grid-template-columns: 1fr; }
  .hero { min-height: 84vh; }
}

@media (max-width: 680px) {
  .topbar { padding: 12px; flex-wrap: wrap; }
  .brand img { width: 140px; }
  .quick-call { display: none; }
  .hero-content { padding: 90px 0 70px; }
  .hero h1 { font-size: 2.7rem; }
  .hero-text { font-size: 1rem; }
  .about, .signature, .tailor, .video-section, .gallery, .reviews, .contact { padding: 68px 0; }
  .about-copy, .tailor-grid, .reviews-copy, .contact-card, .form-card { padding: 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img, .gallery-item.tall img { aspect-ratio: 1 / 1; }
}
