:root {
  --black: #101010;
  --ink: #1d2230;
  --muted: #667085;
  --gold: #c89b3c;
  --gold-dark: #9d741e;
  --soft-gold: #fff6df;
  --line: #e8dfcb;
  --bg: #fbfaf7;
  --white: #fff;
  --green: #15803d;
  --shadow: 0 18px 50px rgba(16, 16, 16, .10);
  --home-hero-image: url("assets/home-bg-01.jpg");
}

* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--bg); }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: auto; }
.top-strip { background: var(--black); color: #f8edd0; font-size: 13px; }
.top-strip .wrap { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.nav { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav .wrap { min-height: 76px; display: flex; justify-content: space-between; align-items: center; gap: 22px; }
.brand-logo { width: 210px; max-width: 44vw; display: block; }
.links { display: flex; gap: 6px; align-items: center; }
.links a { padding: 11px 14px; border-radius: 8px; font-weight: 800; color: #252b3a; }
.links a.active, .links a:hover { background: var(--black); color: var(--gold); }
.btn { border: 0; border-radius: 8px; background: var(--black); color: #fff; padding: 13px 18px; font-weight: 900; cursor: pointer; display: inline-flex; justify-content: center; align-items: center; gap: 8px; }
.btn.gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #111; }
.btn.light { background: #fff; color: var(--black); border: 1px solid var(--line); }
.btn.green { background: var(--green); }
.menu-button { display: none; border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 10px 12px; font-size: 22px; }

.lux-hero { position: relative; isolation: isolate; overflow: hidden; min-height: 430px; color: #fff; background: #111; display: grid; align-items: end; padding: 70px 0 120px; }
.lux-hero::before { content: ""; position: absolute; inset: -18px; z-index: -1; background-image: linear-gradient(110deg, rgba(16,16,16,.92), rgba(16,16,16,.58)), var(--home-hero-image), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80"); background-position: center; background-size: cover; animation: heroBackgroundFloat 18s ease-in-out infinite alternate; transform: scale(1.04); }
@keyframes heroBackgroundFloat { from { transform: scale(1.04) translate3d(-10px, -6px, 0); } to { transform: scale(1.1) translate3d(12px, 8px, 0); } }
.lux-hero h1 { margin: 0; max-width: 780px; font-size: clamp(34px, 5vw, 66px); line-height: 1.02; letter-spacing: 0; }
.lux-hero p { max-width: 690px; color: #f7edd5; font-size: 18px; line-height: 1.6; }
.hero-kpis { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-kpis span { border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); padding: 10px 14px; border-radius: 999px; font-weight: 800; }

.booking-shell { margin-top: -82px; position: relative; z-index: 4; }
.booking-box { background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); overflow: hidden; }
.home-tabs { display: grid; grid-template-columns: repeat(5, 1fr); background: #fff; border-bottom: 1px solid var(--line); }
.home-tabs button { border: 0; background: transparent; padding: 18px 12px; font-weight: 900; font-size: 16px; cursor: pointer; color: #242b3a; }
.home-tabs button.active { background: linear-gradient(135deg, var(--black), #2a2418); color: var(--gold); }
.search-panel { padding: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.field label { display: block; margin: 0 0 8px; color: #596273; font-weight: 900; font-size: 13px; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 54px; border: 1px solid #d9d1be; border-radius: 8px; background: #fff; padding: 12px 14px; font-size: 16px; color: #101010; }
.search-actions { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { padding: 8px 11px; border-radius: 999px; background: var(--soft-gold); color: #5c4210; font-weight: 800; font-size: 13px; }

.section { padding: 54px 0; }
.page-hero { background: #151515; color: #fff; padding: 58px 0; }
.page-hero h1 { margin: 0; font-size: clamp(30px, 4vw, 52px); }
.page-hero p { color: #f4e6c2; }
.section-title { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 22px; }
.section-title h2 { margin: 0; font-size: 30px; }
.section-title p { margin: 0; color: var(--muted); max-width: 560px; line-height: 1.5; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px; min-height: 150px; box-shadow: 0 8px 20px rgba(16,16,16,.04); }
.service-card strong { display: block; font-size: 20px; margin-bottom: 8px; }
.service-card p { color: var(--muted); line-height: 1.45; margin: 0 0 16px; }

.results-layout { display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: 22px; align-items: start; }
.filter-card, .result-card, .invoice-card, .admin-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 10px 26px rgba(16,16,16,.05); }
.filter-card { padding: 18px; position: sticky; top: 96px; display: grid; gap: 14px; }
.result-list { display: grid; gap: 16px; }
.result-card { overflow: hidden; display: grid; grid-template-columns: 250px minmax(0, 1fr) 210px; }
.result-card img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.result-body { padding: 18px; }
.result-body h3 { margin: 0 0 6px; font-size: 22px; }
.meta { color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.amenities, .tag-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.amenities span, .tag-grid span { background: #f6f0e2; border: 1px solid #eadab5; color: #62470c; border-radius: 999px; padding: 7px 9px; font-size: 12px; font-weight: 800; }
.price-panel { padding: 18px; border-left: 1px solid var(--line); display: grid; gap: 10px; align-content: center; }
.price { color: var(--black); font-size: 25px; font-weight: 900; }
.small { color: var(--muted); font-size: 13px; line-height: 1.45; }

.builder-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 22px; }
.builder-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 20px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.check-tile { border: 1px solid var(--line); border-radius: 8px; padding: 12px; display: flex; gap: 10px; align-items: flex-start; background: #fff; }
.invoice-card { padding: 20px; position: sticky; top: 96px; display: grid; gap: 12px; }
.invoice-line, .invoice-total { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid #eee5d0; padding: 9px 0; }
.invoice-total { border: 0; background: var(--soft-gold); padding: 13px; border-radius: 8px; font-weight: 900; }
.package-builder-layout { align-items: start; }
.builder-tabs { margin: 18px -20px 18px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fbfaf7; }
.builder-tabs button { border: 0; border-right: 1px solid var(--line); background: transparent; padding: 14px 10px; font-weight: 900; color: #6b6b6b; cursor: pointer; }
.builder-tabs button.active { color: #243b7a; box-shadow: inset 0 -3px 0 #243b7a; background: #fff; }
.builder-pane { display: none; }
.builder-pane.active { display: block; }
.muted-pane { opacity: .48; }
.section-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.section-row h3 { margin: 0; }
.mini-toggle { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 800; }
.quote-list { display: grid; gap: 10px; }
.quote-option { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 12px; align-items: start; border: 1px solid var(--line); border-radius: 8px; padding: 13px; background: #fff; }
.quote-option b, .quote-option small { display: block; }
.quote-option small { color: var(--muted); margin-top: 4px; }
.pax-slabs { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.pax-slabs em { font-style: normal; font-size: 11px; border: 1px solid #eadab5; color: #62470c; background: #f8f1df; border-radius: 999px; padding: 5px 7px; }
.quote-box { border: 1px solid var(--line); border-radius: 8px; background: #fbfaf7; padding: 13px; color: #2c3444; }
.itinerary-board { display: grid; gap: 12px; }
.itinerary-day { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 18px; border: 1px solid var(--line); border-radius: 8px; padding: 14px; background: #fff; }
.itinerary-day small { display: block; color: var(--muted); margin-top: 5px; }
.timeline-item { position: relative; padding: 0 0 16px 18px; border-left: 2px solid #e7d4a5; }
.timeline-item:before { content: ""; position: absolute; left: -6px; top: 3px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.timeline-item p { margin: 6px 0 0; color: #4d5564; line-height: 1.5; }
.share-row { display: grid; gap: 9px; }
.floating-package-section { background: #fbfaf7; }
.floating-package-section { padding-top: 24px; }
.alt-band { background: #f8f4eb; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title .btn { margin-top: 10px; }
.package-filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.pill-button { border: 1px solid #d9d1be; background: #fff; color: #2c3444; border-radius: 999px; padding: 10px 14px; font-weight: 900; cursor: pointer; }
.pill-button.active { background: var(--black); color: var(--gold); border-color: var(--black); }
.floating-package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.floating-package-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 14px 32px rgba(16,16,16,.08); display: flex; flex-direction: column; }
.floating-package-card img { width: 100%; height: 250px; object-fit: cover; background: #eee; }
.floating-package-body { padding: 16px; display: grid; gap: 10px; flex: 1; }
.floating-package-body h3 { margin: 0; font-size: 21px; line-height: 1.2; }
.floating-package-body p { margin: 0; color: var(--muted); line-height: 1.55; }
.package-chip { display: inline-flex; width: fit-content; background: #101010; color: var(--gold); border-radius: 999px; padding: 7px 10px; font-weight: 900; font-size: 12px; }
.package-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid #eee5d0; padding-top: 10px; font-weight: 900; }
.package-meta.large { justify-content: flex-start; gap: 24px; border: 0; font-size: 20px; }
.package-actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: auto; }
.promo-grid-page { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.promo-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 14px 32px rgba(16,16,16,.08); }
.promo-card img { width: 100%; height: 360px; object-fit: cover; background: #eee; }
.promo-card div { padding: 14px; display: grid; gap: 10px; }
.promo-card h3 { margin: 0; font-size: 18px; line-height: 1.25; }
.flyer-detail { display: grid; gap: 18px; }
.flyer-detail img { width: min(720px, 100%); max-height: 78vh; object-fit: contain; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.package-detail-hero { position: relative; min-height: 520px; display: grid; align-items: end; overflow: hidden; background: #101010; color: #fff; }
.package-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .58; }
.package-detail-copy { position: relative; padding: 110px 20px 70px; max-width: 820px; margin-left: calc((100vw - min(1180px, 100vw - 40px)) / 2); }
.package-detail-copy h1 { font-size: clamp(38px, 6vw, 76px); line-height: .95; margin: 16px 0; color: #fff; }
.package-detail-copy p { max-width: 760px; font-size: 18px; line-height: 1.6; }
.package-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 22px; align-items: start; }
.clean-list { margin: 0; padding-left: 20px; display: grid; gap: 10px; color: #2c3444; line-height: 1.45; }
.promo-float { position: fixed; right: 18px; bottom: 20px; z-index: 60; }
.promo-trigger { border: 0; border-radius: 999px; background: var(--gold); color: #101010; padding: 14px 18px; font-weight: 1000; box-shadow: 0 10px 25px rgba(16,16,16,.28); cursor: pointer; }
.promo-panel { display: none; position: absolute; right: 0; bottom: 62px; width: min(360px, calc(100vw - 36px)); max-height: 76vh; overflow: auto; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px; box-shadow: 0 18px 42px rgba(16,16,16,.25); }
.promo-float.open .promo-panel { display: block; }
.promo-panel h3 { margin: 0 70px 12px 0; }
.promo-scroll { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.promo-scroll a { display: grid; gap: 6px; color: #101010; text-decoration: none; font-size: 12px; font-weight: 800; }
.promo-scroll img { width: 100%; height: 150px; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); }
.admin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.admin-card { padding: 18px; }
.admin-card h3 { margin: 0 0 8px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); }
.admin-table th, .admin-table td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; }

.footer { background: #101010; color: #f3e8ce; padding: 34px 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 20px; }
.footer a, .footer span { display: block; color: #f3e8ce; margin: 8px 0; }
.copyright { margin-top: 24px; color: #d1bd8e; }
.toast { position: fixed; right: 18px; bottom: 18px; background: #101010; color: #fff; padding: 12px 16px; border-radius: 8px; opacity: 0; pointer-events: none; transition: .2s; z-index: 50; }
.toast.show { opacity: 1; }

.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(16, 16, 16, .58);
}

.booking-overlay.show {
  display: flex;
}

.booking-modal {
  width: min(760px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.content-modal textarea { resize: vertical; }
.field.full { grid-column: 1 / -1; }
.admin-hero { min-height: 280px; }
.admin-login-card, .admin-editor { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 22px; box-shadow: var(--shadow); }
.admin-login-card { max-width: 520px; margin: 0 auto; }
.admin-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.admin-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.admin-tabs button { border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 12px 16px; font-weight: 900; cursor: pointer; }
.admin-tabs button.active { background: var(--black); color: var(--gold); border-color: var(--black); }
.admin-panel { display: none; }
.admin-panel.active { display: grid; gap: 18px; }
.admin-list { display: grid; gap: 12px; }
.admin-row { display: grid; grid-template-columns: 86px minmax(0, 1fr) auto; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.admin-row img { width: 86px; height: 70px; object-fit: cover; border-radius: 6px; background: #f2efe7; }
.admin-row small { display: block; color: var(--muted); margin-top: 4px; overflow-wrap: anywhere; }
.upload-label { position: relative; overflow: hidden; cursor: pointer; }
.upload-label input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.btn.danger { color: #9f1f1f; }
.seo-trust-band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 14px; }
.home-flyer-band { padding: 86px 0 38px; background: linear-gradient(180deg, #fff 0%, #faf6ed 100%); border-bottom: 1px solid var(--line); }
.compact-title { margin-bottom: 18px; }
.home-flyer-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 16px; overflow-x: auto; padding: 10px 4px 18px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.home-flyer-card { position: relative; min-height: 300px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); scroll-snap-align: start; background: #111; transform: translateY(0); transition: transform .25s ease, box-shadow .25s ease; }
.home-flyer-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(17, 17, 17, .16); }
.home-flyer-card img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; display: block; }
.home-flyer-card span { position: absolute; left: 12px; right: 12px; bottom: 12px; background: rgba(17, 17, 17, .86); color: var(--gold); border: 1px solid rgba(199, 150, 45, .45); border-radius: 999px; padding: 9px 12px; font-weight: 900; text-align: center; }
.review-hero { min-height: 300px; }
.review-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .7fr); gap: 22px; align-items: start; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 22px; box-shadow: var(--shadow); }
.review-card h2 { margin-top: 0; }

.modal-close {
  float: right;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .top-strip .wrap, .nav .wrap { align-items: flex-start; }
  .links { display: none; position: absolute; left: 16px; right: 16px; top: 76px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 10px; flex-direction: column; align-items: stretch; }
  .links.open { display: flex; }
  .menu-button { display: block; }
  .home-tabs, .service-grid, .form-grid, .admin-grid, .footer-grid, .results-layout, .builder-grid, .floating-package-grid, .package-detail-grid, .promo-grid-page, .admin-row, .review-grid { grid-template-columns: 1fr; }
  .admin-toolbar { align-items: flex-start; flex-direction: column; }
  .result-card { grid-template-columns: 1fr; }
  .price-panel { border-left: 0; border-top: 1px solid var(--line); }
  .filter-card, .invoice-card { position: static; }
  .package-detail-copy { margin-left: 0; padding: 100px 20px 52px; }
  .floating-package-card img { height: 280px; }
  .home-flyer-band { padding-top: 44px; }
  .home-flyer-rail { grid-auto-columns: minmax(230px, 82vw); }
  .home-flyer-card, .home-flyer-card img { min-height: 340px; }
  .promo-scroll { grid-template-columns: 1fr; }
}
