:root {
  color-scheme: dark;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #f5f1e9;
  background: #000;
  --bg: #050505;
  --panel: rgba(12, 12, 12, 0.92);
  --border: rgba(255, 214, 0, 0.18);
  --gold: #d9b66c;
  --text-muted: #a8a09f;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #000;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

button, input, textarea {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 214, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  flex-wrap: nowrap;
}

.brand {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}

.site-nav {
  display: flex;
  gap: 28px;
  flex-wrap: nowrap;
}

.site-nav a {
  color: #d9d4c4;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-switch button {
  border: 1px solid rgba(255, 214, 0, 0.3);
  background: transparent;
  color: #f5f1e9;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.lang-switch button.active,
.lang-switch button:hover {
  background: rgba(217, 182, 108, 0.16);
  border-color: #d9b66c;
}

.site-header .btn,
.site-header .whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-link {
  color: #f5f1e9;
  border: 1px solid rgba(255, 214, 0, 0.22);
  border-radius: 999px;
  padding: 10px 16px;
}

.whatsapp-link svg {
  width: 18px;
  height: 18px;
  fill: #d9b66c;
}

.hero-section {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 0 16px;
}

.eyebrow {
  font-size: 1.12rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #d9b66c;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 700px;
  margin: 24px auto 0;
  color: #d9d4c4;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.section {
  padding: 80px 0;
}

.section-header,
.fleet-intro {
  max-width: 760px;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #d9b66c;
  margin-bottom: 18px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.section p {
  color: #cbc1b4;
}

.grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(217, 182, 108, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card img,
.fleet-card img,
.destination-card img {
  min-height: 220px;
}

.service-card h3,
.fleet-card h3,
.destination-card h3 {
  margin: 0;
  padding: 22px;
  font-size: 1rem;
  letter-spacing: 0.015em;
}

.fleet-grid-wrap {
  display: grid;
  gap: 48px;
}

.fleet-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
  color: #b8b1a5;
}

.feature-list li::before {
  content: '•';
  color: #d9b66c;
  display: inline-block;
  width: 1em;
}

.destination-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.destination-card div {
  padding: 22px;
}

.section-reservation {
  background: radial-gradient(circle at top right, rgba(217, 182, 108, 0.12), transparent 34%), #050505;
}

.reservation-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 40px;
  border: 1px solid rgba(217, 182, 108, 0.14);
  border-radius: 28px;
  background: rgba(10, 10, 10, 0.94);
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid rgba(255, 214, 0, 0.08);
  padding: 48px 0 28px;
  background: #050505;
}

.footer-inner {
  display: grid;
  gap: 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand-copy {
  margin: 16px 0 0;
  color: #c5b9a0;
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 400px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-title {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d9b66c;
  font-size: 0.75rem;
}

.footer-grid p {
  margin: 0;
  color: #f5f1e9;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-link-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-link-list a {
  color: #d9d4c4;
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-link-list a::before {
  content: '•';
  color: #d9b66c;
  margin-right: 10px;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 214, 0, 0.08);
  padding-top: 22px;
  color: #918674;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #d9b66c, #bc9a5a);
  color: #050505;
}

.btn-outline {
  background: transparent;
  color: #f5f1e9;
  border: 1px solid rgba(217, 182, 108, 0.4);
}

.btn:hover,
.btn-outline:hover {
  opacity: 0.95;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.modal-dialog {
  position: relative;
  width: min(520px, calc(100% - 32px));
  max-height: 90vh;
  background: #070707;
  border: 1px solid rgba(217, 182, 108, 0.18);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: transparent;
  color: #f5f1e9;
  font-size: 1.75rem;
  cursor: pointer;
}

.modal-content {
  padding: 40px 32px 32px;
  overflow: auto;
}

.modal-content h3 {
  margin: 0 0 12px;
  font-size: 1.8rem;
}

.modal-content p {
  margin: 0 0 28px;
  color: #beb5a8;
}

.modal-content label {
  display: block;
  margin-bottom: 18px;
  color: #d9d0c3;
  font-size: 0.95rem;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
  color: #f5f1e9;
  margin-top: 8px;
}

.modal-content textarea {
  resize: vertical;
}

@media (max-width: 860px) {
  .header-inner,
  .reservation-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: center;
  }

  .hero-copy {
    font-size: 1rem;
  }
}

@media (max-width: 660px) {
  .site-header {
    padding: 0 0 0 0;
  }

  .header-inner {
    gap: 12px;
  }

  .site-nav {
    gap: 14px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4.25rem);
  }

  .section {
    padding: 60px 0;
  }
}
