:root {
  --bg: #071019;
  --bg-deep: #0c1824;
  --paper: rgba(14, 24, 36, 0.84);
  --paper-strong: rgba(18, 30, 44, 0.96);
  --text: #f4ecdf;
  --muted: #b8a894;
  --gold: #bc8f56;
  --gold-soft: rgba(188, 143, 86, 0.14);
  --forest: #132433;
  --forest-soft: #1c3245;
  --espresso: #f4ecdf;
  --line: rgba(244, 236, 223, 0.1);
  --white-line: rgba(255, 244, 226, 0.18);
  --shadow-soft: 0 22px 54px rgba(0, 0, 0, 0.26);
  --shadow-deep: 0 38px 110px rgba(0, 0, 0, 0.46);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(188, 143, 86, 0.16), transparent 20%),
    radial-gradient(circle at 100% 8%, rgba(29, 52, 75, 0.36), transparent 24%),
    linear-gradient(180deg, #08111a 0%, #0b1622 38%, #101c29 100%);
  padding-bottom: 92px;
}

img {
  max-width: 100%;
  display: block;
}

.hero-visual-card img,
.feature-card img,
.fleet-photo,
.cabin-showcase img,
.cabin-card img {
  cursor: zoom-in;
}

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

button,
input,
select {
  font: inherit;
}

.site-chrome {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 243, 219, 0.08) 50%, transparent 100%);
  opacity: 0.22;
}

.page-shell {
  position: relative;
  width: min(1480px, calc(100% - 36px));
  margin: 22px auto 56px;
}

.site-header,
.booking-card,
.service-card,
.fleet-card,
.cabin-card,
.experience-panel,
.route-list article,
.testimonial-grid blockquote,
.site-footer {
  background: var(--paper);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 244, 226, 0.08);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at left top, rgba(188, 143, 86, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(7, 15, 24, 0.96), rgba(12, 22, 33, 0.92));
  border: 1px solid rgba(255, 239, 214, 0.12);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 244, 226, 0.06);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #8b0f18 0%, #b51624 48%, #7a0d16 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 12px 28px rgba(79, 6, 14, 0.34);
}

.brand-divider {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(188, 143, 86, 0.32), transparent);
}

.brand-stack {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-kicker,
.section-kicker {
  margin: 0;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-name {
  font-family: "Bodoni Moda", "Prata", serif;
  font-size: 1.82rem;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff5e7;
  text-wrap: balance;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d7c6b2;
  font-size: 0.97rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 244, 226, 0.12);
  background: rgba(255, 248, 236, 0.05);
}

.lang-btn,
.header-cta,
.button-primary,
.button-secondary,
.mobile-action-primary,
.mobile-action-secondary {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 40px;
  height: 38px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.is-active {
  background: linear-gradient(135deg, #5b3b20, #bc8f56);
  color: #fff7ea;
}

.header-cta,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, #80572f, #bc8f56);
  color: #fff8ef;
  box-shadow: 0 18px 32px rgba(92, 53, 18, 0.26);
}

.button-secondary {
  border: 1px solid rgba(255, 244, 226, 0.12);
  background: rgba(255, 248, 236, 0.04);
  color: #efe2d0;
}

.lang-btn:hover,
.header-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.mobile-action-primary:hover,
.mobile-action-secondary:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: auto;
  align-items: start;
  padding: 32px 0 28px;
}

.hero h1,
.section-heading h1,
.section-heading h2,
.editorial-copy h1,
.editorial-copy h2,
.booking-head h2,
.site-footer h2 {
  margin: 0;
  font-family: "Prata", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-visual-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.hero-visual-card {
  order: 1;
  grid-column: 1 / -1;
}

.booking-card {
  order: 2;
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.hero-visual-card {
  position: relative;
  height: min(80vh, 860px);
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
  background:
    radial-gradient(circle at top, rgba(169, 131, 79, 0.18), transparent 36%),
    linear-gradient(180deg, #15171a 0%, #20252b 100%);
}

.hero-visual-card::after,
.feature-card::after,
.cabin-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 10, 0.02), rgba(14, 16, 18, 0.54));
  z-index: 1;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slide:nth-child(1) img {
  object-position: center 54%;
}

.hero-slide:nth-child(2) img {
  object-position: center 52%;
}

.hero-slide:nth-child(3) img {
  object-position: center 44%;
}

.hero-slide-caption {
  position: absolute;
  left: 34px;
  bottom: 138px;
  z-index: 2;
  width: min(420px, calc(100% - 68px));
  padding: 20px 22px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.08), rgba(8, 10, 12, 0.78));
  border: 1px solid rgba(255, 240, 214, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
  color: #fff8ef;
}

.hero-slide-caption strong {
  display: block;
  max-width: 11ch;
  font-family: "Prata", serif;
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1.08;
}

.hero-slide-caption .section-kicker,
.feature-copy .section-kicker,
.cabin-showcase-copy .section-kicker {
  color: rgba(255, 233, 201, 0.72);
}

.hero-slider-ui {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-slider-arrow {
  position: absolute;
  top: 26px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(11, 13, 15, 0.3);
  color: #fff9f0;
  backdrop-filter: blur(16px);
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
}

.hero-slider-arrow span {
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-slider-arrow--prev {
  left: 26px;
}

.hero-slider-arrow--next {
  right: 26px;
}

.hero-slider-meta {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  display: grid;
  gap: 16px;
  pointer-events: none;
}

.hero-slider-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.hero-slider-progress-bar {
  display: block;
  width: 33.34%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 232, 194, 0.65), rgba(255, 255, 255, 0.96));
  transform: translateX(0%);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slider-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  pointer-events: auto;
}

.hero-slider-dot {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 12, 14, 0.28);
  color: rgba(255, 248, 239, 0.78);
  border-radius: 18px;
  min-height: 74px;
  padding: 14px 16px;
  text-align: left;
  display: grid;
  gap: 6px;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.hero-slider-dot.is-active {
  background: rgba(255, 250, 242, 0.16);
  color: #fffaf2;
  border-color: rgba(255, 240, 214, 0.32);
}

.hero-slider-arrow:hover,
.hero-slider-dot:hover {
  background: rgba(255, 250, 242, 0.18);
  border-color: rgba(255, 240, 214, 0.34);
}

.hero-slider-index {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 233, 201, 0.7);
}

.hero-slider-dot > span:last-child {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.booking-card {
  display: block;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(188, 143, 86, 0.12), transparent 34%),
    rgba(17, 28, 42, 0.96);
  border: 1px solid rgba(255, 244, 226, 0.08);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.booking-head h2 {
  font-size: clamp(1.45rem, 1.6vw, 1.9rem);
  line-height: 1.12;
  margin-top: 10px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #cbb8a0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 244, 226, 0.1);
  background: rgba(255, 248, 236, 0.05);
  color: #f3ecdf;
  color-scheme: dark;
}

.quote-form input::placeholder {
  color: rgba(203, 184, 160, 0.7);
}

.quote-form select {
  background-color: rgba(255, 248, 236, 0.05);
  color: #f3ecdf;
}

.quote-form select option {
  background: #152232;
  color: #f3ecdf;
}

.quote-form select option:checked,
.quote-form select option:hover,
.quote-form select option:focus {
  background: #7c5b34;
  color: #fff7eb;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  grid-column: span 2;
}

.button-full {
  width: 100%;
  grid-column: span 2;
  min-height: 54px;
}

.quote-form > label:last-of-type {
  grid-column: span 2;
}

.quote-result {
  margin-top: 20px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(188, 143, 86, 0.14), transparent 44%),
    rgba(10, 18, 28, 0.72);
  border: 1px solid rgba(188, 143, 86, 0.18);
}

.quote-label,
.quote-note {
  margin: 0;
  color: var(--muted);
}

.quote-price {
  margin: 8px 0;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff3df;
}

.editorial-intro,
.fleet-section,
.cabin-section,
.routes-section,
.testimonial-section {
  padding-top: 86px;
}

.editorial-copy,
.section-heading {
  display: grid;
  gap: 14px;
  align-items: end;
  max-width: 1320px;
}

.editorial-copy {
  gap: 10px;
  max-width: 980px;
}

.editorial-copy h1,
.editorial-copy h2,
.section-heading h1,
.section-heading h2,
.site-footer h2 {
  max-width: 20ch;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.14;
}

.editorial-copy h1,
.editorial-copy h2 {
  max-width: 22ch;
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  line-height: 1.16;
  color: #efe3d1;
}

.service-grid,
.feature-grid,
.fleet-grid,
.cabin-layout,
.testimonial-grid,
.routes-layout {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.service-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-card:nth-child(1) {
  grid-column: span 3;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 3;
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-md);
}

.service-card h3,
.fleet-card h3,
.experience-panel h3,
.route-list h3,
.cabin-card h3 {
  margin: 0;
  font-family: "Prata", serif;
  font-size: 1.42rem;
  line-height: 1.16;
}

.service-card p,
.fleet-card p,
.experience-panel p,
.route-list p,
.cabin-card p,
.testimonial-grid blockquote {
  color: var(--muted);
  line-height: 1.78;
}

.feature-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.feature-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  width: min(78%, 430px);
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 9, 10, 0.08), rgba(7, 9, 10, 0.76));
  border: 1px solid rgba(255, 240, 214, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(7px);
  color: #fff8ef;
}

.feature-copy h3 {
  margin: 0;
  max-width: 15ch;
  font-family: "Prata", serif;
  font-size: 1.44rem;
  line-height: 1.08;
}

.fleet-grid {
  grid-template-columns: 0.88fr 1.12fr 0.88fr;
}

.fleet-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.fleet-photo {
  height: 260px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 18px;
}

.fleet-badge {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.featured {
  background:
    radial-gradient(circle at top right, rgba(188, 143, 86, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(13, 22, 34, 0.98), rgba(9, 16, 25, 0.99));
  color: #fff8ef;
  transform: translateY(-8px);
}

.featured p,
.featured .fleet-badge {
  color: rgba(255, 248, 239, 0.78);
}

.cabin-layout {
  grid-template-columns: 1.08fr 0.92fr;
}

.cabin-showcase {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
  background: #0c1622;
}

.cabin-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cabin-showcase-copy {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  width: min(420px, calc(100% - 48px));
  padding: 20px 20px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(7, 9, 10, 0.08), rgba(7, 9, 10, 0.76));
  border: 1px solid rgba(255, 240, 214, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(7px);
  color: #fff8ef;
}

.cabin-showcase-copy h3 {
  margin: 0;
  max-width: 12ch;
  font-family: "Prata", serif;
  font-size: clamp(1.8rem, 2.55vw, 2.65rem);
  line-height: 1.06;
}

.cabin-stack {
  display: grid;
  gap: 18px;
}

.cabin-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.cabin-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
}

.cabin-card div {
  padding: 24px;
}

.cabin-card h3 {
  margin-bottom: 10px;
}

.routes-layout {
  grid-template-columns: 1.12fr 0.88fr;
}

.route-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-list article,
.experience-panel {
  padding: 26px;
  border-radius: var(--radius-md);
}

.route-list p {
  margin: 8px 0 0;
}

.experience-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  overflow: hidden;
}

.experience-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 52%;
  border-radius: 18px;
  margin-bottom: 4px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.experience-panel h3 {
  margin-top: 0;
  font-size: 1.85rem;
}

.experience-panel p:last-child {
  margin: 0;
}

.testimonial-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 30px;
  border-radius: var(--radius-md);
  font-size: 1.02rem;
  font-weight: 500;
}

.testimonial-grid cite {
  display: block;
  margin-top: 16px;
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 86px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(188, 143, 86, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(11, 20, 31, 0.98), rgba(15, 25, 38, 0.96));
}

.footer-contact {
  display: grid;
  gap: 10px;
  text-align: right;
}

.footer-contact a {
  font-weight: 700;
}

.footer-payment-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(188, 143, 86, 0.24);
  background: linear-gradient(135deg, rgba(188, 143, 86, 0.18), rgba(188, 143, 86, 0.05));
  color: #f6e8d2;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(188, 143, 86, 0.34);
  background: linear-gradient(135deg, #7b582f, #bc8f56);
  color: #fff7eb;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.floating-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.floating-whatsapp__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-action-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 30;
  transform: translateX(-50%);
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(calc(100% - 18px), 320px);
  padding: 10px;
  border-radius: 24px;
  backdrop-filter: blur(18px);
  background: rgba(8, 15, 24, 0.94);
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow-deep);
}

.mobile-action-primary,
.mobile-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 16px;
  font-weight: 700;
}

.mobile-action-primary {
  background: linear-gradient(135deg, #7b582f, #bc8f56);
  color: #fff8ef;
}

.mobile-action-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(6, 8, 10, 0.88);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-panel {
  width: min(92vw, 1380px);
  max-height: calc(100vh - 56px);
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 20, 24, 0.96);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-panel img {
  width: 100%;
  max-height: calc(100vh - 84px);
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff7eb;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.payment-body {
  padding-bottom: 42px;
}

.payment-shell {
  width: min(1320px, calc(100% - 28px));
}

.payment-main {
  padding: 54px 0 12px;
}

.payment-hero,
.payment-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
}

.payment-copy,
.payment-summary-card,
.payment-form-card,
.payment-side-card,
.payment-success-panel {
  background: var(--paper);
  backdrop-filter: blur(18px);
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow-soft);
}

.payment-copy,
.payment-summary-card,
.payment-side-card {
  border-radius: var(--radius-xl);
}

.payment-copy,
.payment-summary-card,
.payment-form-card,
.payment-side-card {
  padding: 30px;
}

.payment-copy h1,
.payment-summary-card h2,
.payment-form-head h2,
.payment-side-card h2,
.payment-success-panel h2 {
  margin: 0;
  font-family: "Prata", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.payment-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 4.6vw, 5rem);
  line-height: 1.04;
  margin-top: 16px;
}

.payment-text {
  max-width: 48ch;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.payment-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.payment-highlights span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(198, 162, 106, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #dbc8ac;
  font-weight: 600;
}

.payment-summary-card h2,
.payment-form-head h2,
.payment-side-card h2,
.payment-success-panel h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  line-height: 1.08;
}

.summary-stack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.summary-row span {
  color: var(--muted);
}

.summary-row strong {
  text-align: right;
}

.summary-amount {
  font-size: 2rem;
  color: #ecd0a1;
}

.payment-layout {
  margin-top: 22px;
  align-items: start;
}

.payment-form-card {
  border-radius: var(--radius-xl);
}

.payment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.payment-form-grid label {
  display: grid;
  gap: 8px;
  color: #efe1cf;
  font-size: 0.93rem;
  font-weight: 600;
}

.payment-form-grid input,
.payment-form-grid textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  resize: vertical;
}

.payment-form-grid textarea::placeholder,
.payment-form-grid input::placeholder {
  color: rgba(184, 171, 152, 0.82);
}

.payment-span-2 {
  grid-column: span 2;
}

.payment-actions {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.payment-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.7;
}

.payment-consent input {
  margin-top: 4px;
}

.payment-submit {
  min-height: 56px;
}

.payment-side-card {
  display: grid;
  gap: 20px;
}

.payment-benefits {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.payment-contact-box {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(198, 162, 106, 0.16);
}

.payment-contact-box strong {
  color: #f2e2c7;
}

.payment-success {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 7, 10, 0.86);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.payment-success.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.payment-success-panel {
  width: min(100%, 620px);
  padding: 34px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.payment-success-panel p:last-of-type {
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual-stack {
    grid-template-columns: 1fr;
  }

  .hero-visual-card {
    height: 660px;
    min-height: 660px;
  }

  .booking-card {
    max-width: none;
    margin-bottom: 0;
  }

  .quote-form {
    grid-template-columns: 1fr 1fr;
    margin-top: 22px;
  }

  .form-grid,
  .button-full {
    grid-column: auto;
  }

  .quote-form > label:last-of-type {
    grid-column: span 2;
  }

  .service-grid,
  .feature-grid,
  .fleet-grid,
  .cabin-layout,
  .routes-layout,
  .testimonial-grid,
  .payment-hero,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    grid-column: auto;
  }

  .route-list {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-contact {
    text-align: left;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(2.9rem, 10vw, 4.7rem);
  }

  .editorial-copy h1,
  .editorial-copy h2,
  .section-heading h1,
  .section-heading h2,
  .site-footer h2 {
    max-width: 18ch;
    font-size: clamp(2.25rem, 8vw, 3.6rem);
  }

  .hero-slide-caption strong,
  .cabin-showcase-copy h3 {
    max-width: 12ch;
  }

  .mobile-action-bar {
    display: grid;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 92px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 620px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-bottom: 104px;
  }

  .page-shell {
    width: min(100% - 14px, 1400px);
  }

  .site-header {
    position: static;
    gap: 14px;
    padding: 18px;
    align-items: stretch;
  }

  .brand-lockup {
    align-items: flex-start;
    width: 100%;
    padding: 0;
  }

  .brand-divider {
    display: none;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 0.84rem;
  }

  .brand-name {
    font-size: 1.28rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 0.82rem;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .header-tools {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .language-switcher {
    max-width: 100%;
  }

  .header-cta {
    flex: 1 1 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero {
    padding-top: 20px;
    gap: 18px;
  }

  .hero-visual-card {
    height: 520px;
    min-height: 520px;
  }

  .hero-visual-card::after,
  .feature-card::after,
  .cabin-showcase::after {
    display: none;
  }

  .hero-visual-card {
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .hero-slide-caption {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    margin-top: 12px;
    padding: 0 6px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    color: var(--text);
  }

  .hero-slide-caption .section-kicker,
  .feature-copy .section-kicker,
  .cabin-showcase-copy .section-kicker {
    color: var(--gold);
  }

  .hero-slide-caption strong {
    max-width: none;
    font-size: 1.22rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .hero-slider-ui {
    position: static;
    margin-top: 12px;
    pointer-events: auto;
  }

  .hero-slider-arrow {
    display: none;
  }

  .hero-slider-meta {
    position: static;
    gap: 12px;
    padding: 0 6px;
  }

  .hero-slider-nav {
    grid-template-columns: 1fr;
  }

  .hero-slider-dot {
    min-height: auto;
  }

  .booking-card {
    padding: 24px;
  }

  .feature-card {
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .feature-copy {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    margin-top: 12px;
    padding: 0 6px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    color: var(--text);
  }

  .feature-copy h3 {
    max-width: none;
    font-size: 1.12rem;
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .cabin-showcase {
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .cabin-showcase-copy {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    margin-top: 12px;
    padding: 0 6px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    color: var(--text);
  }

  .cabin-showcase-copy h3 {
    max-width: none;
    font-size: 1.28rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .booking-card,
  .service-card,
  .route-list article,
  .experience-panel,
  .testimonial-grid blockquote,
  .site-footer,
  .fleet-card,
  .cabin-card div {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form > label:last-of-type,
  .form-grid,
  .button-full {
    grid-column: auto;
  }

  .fleet-photo,
  .feature-card,
  .cabin-card img {
    height: 300px;
    min-height: 300px;
    min-width: 0;
  }

  .cabin-showcase {
    min-height: 380px;
  }

  .editorial-copy h1,
  .editorial-copy h2,
  .section-heading h1,
  .section-heading h2,
  .site-footer h2 {
    max-width: 100%;
    font-size: clamp(1.42rem, 6vw, 1.82rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
  }

  .section-heading,
  .editorial-copy,
  .footer-copy {
    max-width: 100%;
    min-width: 0;
  }

  .route-list,
  .fleet-grid,
  .cabin-layout,
  .routes-layout,
  .feature-grid {
    min-width: 0;
  }

  .service-card h3,
  .fleet-card h3,
  .route-list h3,
  .experience-panel h3,
  .cabin-card h3 {
    overflow-wrap: anywhere;
  }

  .mobile-action-bar {
    bottom: 8px;
    width: calc(100% - 12px);
  }

  .floating-whatsapp {
    right: 10px;
    bottom: 82px;
    width: 38px;
    height: 38px;
    box-shadow: 0 8px 18px rgba(7, 34, 20, 0.34);
  }

  .floating-whatsapp__icon {
    width: 38px;
    height: 38px;
  }

  .floating-whatsapp__icon svg {
    width: 16px;
    height: 16px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-panel {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .payment-main {
    padding-top: 28px;
  }

  .payment-copy,
  .payment-summary-card,
  .payment-form-card,
  .payment-side-card,
  .payment-success-panel {
    padding: 22px;
  }

  .payment-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .payment-form-grid {
    grid-template-columns: 1fr;
  }

  .payment-span-2 {
    grid-column: auto;
  }

  .summary-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
