
:root {
  --ink: #0b2530;
  --ink-2: #1d3740;
  --muted: #66767a;
  --ivory: #fbf6ec;
  --ivory-2: #f4eadc;
  --paper: #fffdf8;
  --champagne: #d8bd82;
  --gold: #b68a4a;
  --copper: #a96843;
  --sea: #4d8d91;
  --sea-dark: #0d5d62;
  --white: #ffffff;
  --line: rgba(11, 37, 48, .13);
  --gold-line: rgba(182, 138, 74, .32);
  --shadow: 0 26px 70px rgba(11, 37, 48, .15);
  --soft-shadow: 0 16px 48px rgba(11, 37, 48, .08);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
h1, h2, h3, p, a, span, strong, label { overflow-wrap: anywhere; }
@supports (text-wrap: balance) { h1, .h2, .lead { text-wrap: balance; } }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--max), calc(100% - clamp(26px, 5vw, 64px)));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background:
    linear-gradient(180deg, rgba(251,246,236,.96), rgba(251,246,236,.88));
  border-bottom: 1px solid rgba(182,138,74,.18);
}
.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; min-width: 0; }
.logo img { width: 176px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(11,37,48,.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform .22s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.lang-switch {
  display: flex;
  gap: 4px;
  padding: 5px;
  background: rgba(11,37,48,.06);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
}
.lang-switch button {
  border: 0;
  border-radius: 999px;
  padding: 8px 11px;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}
.lang-switch button.active {
  background: var(--ink);
  color: var(--ivory);
}
.mobile-cta { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #b98550, #d9bc7f);
  color: #071c24;
  box-shadow: 0 18px 42px rgba(182,138,74,.24);
}
.btn-secondary {
  background: rgba(255,255,255,.10);
  color: var(--white);
  border-color: rgba(255,255,255,.32);
  backdrop-filter: blur(10px);
}
.btn-dark {
  background: var(--ink);
  color: var(--ivory);
  border-color: rgba(255,255,255,.08);
}
.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--gold-line);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.02) contrast(1.04);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 38%, rgba(216,189,130,.10), transparent 36%),
    linear-gradient(90deg, rgba(6,24,32,.90) 0%, rgba(6,24,32,.72) 42%, rgba(6,24,32,.34) 100%),
    linear-gradient(0deg, rgba(6,24,32,.74) 0%, rgba(6,24,32,.10) 58%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--header-h));
  padding: 46px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
}
.hero-content > div:first-child { max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: 100%;
  border: 1px solid rgba(216,189,130,.42);
  background: rgba(255,255,255,.09);
  color: rgba(255,250,242,.92);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.eyebrow::before {
  content:"";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 4px rgba(216,189,130,.13);
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.1vw, 62px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 700;
  max-width: 690px;
  margin: 20px 0 18px;
  text-shadow: 0 10px 30px rgba(0,0,0,.24);
}
.hero p {
  max-width: 610px;
  font-size: 17px;
  line-height: 1.58;
  color: rgba(255,255,255,.86);
  margin: 0 0 26px;
  text-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.hero-actions {
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}

.booking-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,253,248,.96), rgba(244,234,220,.94));
  color: var(--ink);
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216,189,130,.45);
  backdrop-filter: blur(18px);
}
.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.56), transparent 36%);
}
.booking-card > * { position: relative; z-index: 1; }
.price-label {
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.04em;
  margin: 5px 0 8px;
}
.price span {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--muted);
}
.card-list {
  margin: 18px 0 0;
  display: grid;
  gap: 9px;
}
.card-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(11,37,48,.065);
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 17px;
  padding: 11px 13px;
  font-size: 14px;
  font-weight: 760;
}
.card-pill svg { flex: 0 0 auto; }

/* Trust strip */
.trust-strip {
  margin-top: -18px;
  position: relative;
  z-index: 5;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: rgba(255,253,248,.95);
  border: 1px solid var(--gold-line);
  box-shadow: var(--soft-shadow);
  border-radius: 26px;
  padding: 14px;
}
.trust-item {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffdf8, #f8f0e4);
  border: 1px solid rgba(182,138,74,.12);
}
.trust-item strong {
  display: block;
  font-size: 15px;
  letter-spacing: -.01em;
  font-weight: 850;
}
.trust-item span {
  display: block;
  color: var(--muted);
  font-weight: 620;
  margin-top: 4px;
  font-size: 13px;
}

/* Generic sections */
section { padding: 88px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 34px;
  margin-bottom: 34px;
}
.kicker {
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  margin-bottom: 12px;
}
.h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 700;
  margin: 0;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
  max-width: 620px;
  margin: 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.story-card {
  background: rgba(255,253,248,.88);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--soft-shadow);
}
.story-card p {
  color: var(--muted);
  font-size: 16.5px;
  margin: 0;
}
.story-card p + p { margin-top: 16px; }
.photo-stack {
  position: relative;
  min-height: 510px;
}
.photo-stack img {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 7px solid var(--ivory);
}
.photo-stack img:first-child {
  width: 70%;
  height: 400px;
  left: 0;
  top: 0;
}
.photo-stack img:last-child {
  width: 56%;
  height: 330px;
  right: 0;
  bottom: 0;
}

/* Itinerary */
.itinerary {
  background:
    radial-gradient(circle at 8% 12%, rgba(216,189,130,.14), transparent 30%),
    var(--ivory-2);
}
.timeline {
  display: grid;
  gap: 14px;
}
.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  background: rgba(255,253,248,.92);
  border: 1px solid var(--gold-line);
  border-radius: 22px;
  padding: 19px;
  box-shadow: 0 12px 32px rgba(11,37,48,.06);
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ink), #1d3a42);
  color: var(--champagne);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .08em;
}
.step h3 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: -.02em;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-weight: 620;
}
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  min-height: 520px;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid rgba(182,138,74,.24);
}
.map-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(1.03);
  opacity: .94;
}
.map-card::after {
  content: "";
  position:absolute;
  inset:0;
  background: linear-gradient(0deg, rgba(6,24,32,.78), rgba(6,24,32,0) 48%);
}
.map-caption {
  position:absolute;
  left: 24px;
  right:24px;
  bottom:24px;
  z-index:2;
  color:white;
}
.map-caption strong {
  display:block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.map-caption span {
  color: rgba(255,255,255,.8);
  font-weight: 700;
}

/* Feature cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: rgba(255,253,248,.9);
  border: 1px solid var(--gold-line);
  border-radius: 25px;
  padding: 28px;
  box-shadow: var(--soft-shadow);
}
.feature-icon {
  width: 50px;
  height:50px;
  border-radius: 50%;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(216,189,130,.26), rgba(77,141,145,.12));
  margin-bottom: 20px;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: -.025em;
}
.feature-card p {
  color: var(--muted);
  margin: 0;
  font-weight: 620;
}

/* Gallery */
.gallery { padding-bottom: 44px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid figure {
  margin:0;
  border-radius: 24px;
  overflow:hidden;
  position:relative;
  background: var(--ink);
  min-height: 230px;
  box-shadow: 0 14px 36px rgba(11,37,48,.10);
}
.gallery-grid figure.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid img {
  width:100%;
  height:100%;
  object-fit: cover;
  min-height:230px;
  transition: transform .55s ease;
}
.gallery-grid figure.large img { min-height: 474px; }
.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,24,32,.58), transparent 48%);
  opacity: .72;
}
.gallery-grid figure:hover img { transform: scale(1.045); }
.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
  opacity: .96;
}

/* Includes */
.included { background: var(--paper); }
.check-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
}
ul.clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}
ul.clean li {
  display:flex;
  gap: 11px;
  align-items:flex-start;
  color: var(--ink-2);
  font-weight: 690;
}
.tick, .cross {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  margin-top: 1px;
}
.tick {
  background: rgba(77,141,145,.16);
  color: var(--sea-dark);
}
.cross {
  background: rgba(169,104,67,.12);
  color: var(--copper);
}
.info-box {
  background: linear-gradient(180deg, #fffdf8, #f7efe2);
  border: 1px solid var(--gold-line);
  border-radius: 24px;
  padding: 28px;
}
.info-box h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: -.03em;
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at 18% 20%, rgba(216,189,130,.16), transparent 30%),
    linear-gradient(180deg, var(--ivory) 0%, #eaf3f2 100%);
}
.contact-wrap {
  display:grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: start;
}
.contact-panel {
  background:
    radial-gradient(circle at 78% 86%, rgba(216,189,130,.18), transparent 32%),
    linear-gradient(145deg, #0b2530, #14353d);
  color: white;
  border-radius: var(--radius);
  padding: 34px;
  position: sticky;
  top: 106px;
  overflow: hidden;
  border: 1px solid rgba(216,189,130,.22);
  box-shadow: var(--shadow);
}
.contact-panel .h2 {
  color: white;
  font-size: 38px;
}
.contact-panel p {
  color: rgba(255,255,255,.76);
  font-size: 17px;
  position:relative;
  z-index:1;
}
.contact-mini {
  display:grid;
  gap: 12px;
  margin-top: 28px;
  position:relative;
  z-index:1;
}
.contact-mini div {
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
}
.form-card {
  background: rgba(255,253,248,.94);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.form-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field {
  display:grid;
  gap: 7px;
}
.form-field.full { grid-column: 1 / -1; }
label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(11,37,48,.16);
  background: #fffaf4;
  border-radius: 16px;
  padding: 14px 14px;
  outline: none;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216,189,130,.18);
}
textarea { min-height: 132px; resize: vertical; }
.consent {
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  margin: 16px 0 20px;
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.status {
  margin-top: 14px;
  font-weight: 800;
  color: var(--sea-dark);
  display:none;
}

/* Footer */
.footer {
  background: var(--ink);
  color: white;
  padding: 46px 0;
}
.footer-grid {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.footer p {
  color: rgba(255,255,255,.68);
  margin: 8px 0 0;
}
.footer .logo-text {
  font-family: Georgia, "Times New Roman", serif;
  font-weight:700;
  font-size:24px;
  letter-spacing:-.025em;
}
.footer-links {
  display:flex;
  gap: 18px;
  color: rgba(255,255,255,.75);
  font-weight: 760;
}

/* Responsive */
@media (max-width: 1180px) {
  .nav { gap: 16px; }
  .nav-links { gap: 20px; }
  .logo img { width: 164px; }
  .hero-content {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
    padding: 40px 0 38px;
  }
  .hero h1 {
    font-size: clamp(38px, 4.8vw, 56px);
    max-width: 640px;
  }
}

@media (min-width: 1025px) and (max-height: 930px) {
  .hero-content {
    padding: 34px 0 32px;
  }
  .hero h1 {
    font-size: clamp(36px, 4.3vw, 52px);
    max-width: 610px;
    margin: 16px 0 14px;
  }
  .hero p {
    font-size: 16px;
    max-width: 560px;
    margin-bottom: 20px;
  }
  .btn {
    min-height: 45px;
    padding: 10px 18px;
    font-size: 14.5px;
  }
  .booking-card { padding: 18px; }
  .price { font-size: 36px; }
  .card-list { gap: 8px; margin-top: 14px; }
  .card-pill { padding: 10px 12px; font-size: 13.5px; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-cta { display:inline-flex; }
  .hero { min-height: auto; }
  .hero::before {
    background:
      radial-gradient(circle at 70% 38%, rgba(216,189,130,.10), transparent 36%),
      linear-gradient(90deg, rgba(6,24,32,.88) 0%, rgba(6,24,32,.66) 56%, rgba(6,24,32,.34) 100%),
      linear-gradient(0deg, rgba(6,24,32,.78) 0%, rgba(6,24,32,.12) 60%);
  }
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: clamp(52px, 9vw, 86px) 0 56px;
    gap: 26px;
    align-items: start;
  }
  .hero h1 {
    font-size: clamp(38px, 6.6vw, 55px);
    max-width: 760px;
  }
  .hero p { max-width: 700px; font-size: 16.5px; }
  .booking-card { max-width: 500px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-col, .check-grid, .contact-wrap { grid-template-columns: 1fr; }
  .photo-stack {
    min-height: 440px;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }
  .cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-panel { position: relative; top: auto; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-grid figure.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-grid figure.large img { min-height: 300px; }
}

@media (max-width: 820px) {
  .nav {
    min-height: 72px;
    gap: 12px;
  }
  .logo img { width: 150px; }
  .mobile-cta {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
  }
  .lang-switch { padding: 5px; gap: 4px; }
  .lang-switch button { padding: 7px 9px; font-size: 12px; }
  .hero-media img { object-position: 62% center; }
  .hero-content { padding: 48px 0 52px; }
  .hero h1 {
    font-size: clamp(34px, 7.7vw, 48px);
    letter-spacing: -.032em;
  }
  .hero p { font-size: 16px; }
  section { padding: 74px 0; }
  .section-head {
    display: block;
    margin-bottom: 26px;
  }
  .lead { margin-top: 14px; }
  .cards-3 { grid-template-columns: 1fr; }
  .step { grid-template-columns: 52px minmax(0, 1fr); }
  .map-card, .map-card img { min-height: 420px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid figure.large { grid-column: span 2; }
  .footer-grid { display:block; }
  .footer-links { margin-top: 18px; flex-wrap:wrap; }
}

@media (max-width: 640px) {
  :root {
    --radius: 22px;
    --radius-sm: 14px;
  }
  .nav {
    min-height: 68px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo lang"
      "cta cta";
    padding: 10px 0;
    row-gap: 8px;
  }
  .logo { grid-area: logo; }
  .logo img { width: clamp(126px, 40vw, 148px); }
  .lang-switch {
    grid-area: lang;
    justify-self: end;
  }
  .mobile-cta {
    grid-area: cta;
    width: 100%;
    min-height: 42px;
  }
  .hero-media img { object-position: 66% center; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(6,24,32,.90) 0%, rgba(6,24,32,.72) 60%, rgba(6,24,32,.42) 100%),
      linear-gradient(0deg, rgba(6,24,32,.88) 0%, rgba(6,24,32,.26) 66%);
  }
  .hero-content { padding: 34px 0 36px; }
  .eyebrow {
    font-size: 11px;
    padding: 8px 12px;
    white-space: normal;
  }
  .hero h1 {
    font-size: clamp(31px, 9.8vw, 40px);
    line-height: 1.06;
    margin: 16px 0 14px;
  }
  .hero p {
    font-size: 15.5px;
    margin-bottom: 20px;
  }
  .hero-actions { gap: 10px; }
  .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
  }
  .booking-card {
    padding: 18px;
    border-radius: 22px;
    max-width: 100%;
  }
  .price { font-size: clamp(34px, 10vw, 42px); }
  .card-pill {
    border-radius: 16px;
    padding: 11px 12px;
  }
  .trust-strip {
    margin-top: 0;
    padding-top: 14px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 10px;
  }
  .trust-item { padding: 16px; }
  section { padding: 58px 0; }
  .h2 { font-size: clamp(30px, 8.7vw, 42px); }
  .story-card, .feature-card, .info-box, .form-card, .contact-panel {
    padding: 22px;
    border-radius: 22px;
  }
  .photo-stack { min-height: 345px; }
  .photo-stack img {
    border-width: 5px;
    border-radius: 22px;
  }
  .photo-stack img:first-child {
    width: 82%;
    height: 260px;
  }
  .photo-stack img:last-child {
    width: 64%;
    height: 215px;
  }
  .step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }
  .step-num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
  .map-card, .map-card img { min-height: 360px; }
  .map-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .map-caption strong { font-size: 23px; }
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-grid figure,
  .gallery-grid figure.large {
    min-width: min(84vw, 420px);
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }
  .gallery-grid figure.large img,
  .gallery-grid img { min-height: 380px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-panel .h2 { font-size: clamp(30px, 8.7vw, 40px); }
  .footer { padding: 36px 0; }
}

@media (max-width: 420px) {
  .container { width: min(var(--max), calc(100% - 22px)); }
  .logo img { width: 128px; }
  .lang-switch button {
    padding: 6px 8px;
    font-size: 11px;
  }
  .mobile-cta { display: none; }
  .hero-content { padding: 28px 0 32px; }
  .hero h1 {
    font-size: clamp(29px, 10.7vw, 36px);
    letter-spacing: -.025em;
  }
  .hero p { font-size: 15px; }
  .trust-item strong { font-size: 15.5px; }
  .photo-stack { min-height: 305px; }
  .photo-stack img:first-child { height: 235px; }
  .photo-stack img:last-child { height: 190px; }
  .gallery-grid figure,
  .gallery-grid figure.large { min-width: 86vw; }
  .gallery-grid figure.large img,
  .gallery-grid img { min-height: 340px; }
  .form-card .h2 { font-size: 29px !important; }
  input, select, textarea {
    border-radius: 14px;
    padding: 13px;
  }
}

@media (max-width: 340px) {
  .logo img { width: 118px; }
  .lang-switch button { padding: 6px 7px; }
  .hero h1 { font-size: 28px; }
  .hero-actions .btn { font-size: 14px; }
  .price { font-size: 32px; }
  .card-pill { font-size: 14px; }
  .h2 { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* V4 route map, clickable gallery and lightbox */
.route-card {
  background: rgba(255,253,248,.94);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.route-map-head {
  padding: 22px 24px 16px;
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(182,138,74,.22);
}
.route-map-head strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.route-map-head span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}
.route-map {
  padding: 14px;
}
.route-map svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}
.route-legend {
  padding: 0 20px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.route-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11,37,48,.06);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 750;
}
.route-legend b {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--champagne);
  font-size: 11px;
}

.gallery-grid .gallery-item {
  margin: 0;
  padding: 0;
  border: 0;
  text-align: left;
  cursor: zoom-in;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  min-height: 230px;
  box-shadow: 0 14px 36px rgba(11,37,48,.10);
}
.gallery-grid .gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid .gallery-item img {
  width:100%;
  height:100%;
  object-fit: cover;
  min-height:230px;
  transition: transform .55s ease, opacity .2s ease;
}
.gallery-grid .gallery-item.large img { min-height: 474px; }
.gallery-grid .gallery-item::after {
  content: "＋";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,253,248,.88);
  color: var(--ink);
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.gallery-grid .gallery-item:hover img { transform: scale(1.045); opacity: .92; }
.gallery-grid .gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: clamp(16px, 4vw, 44px);
  background: rgba(6,24,32,.86);
  backdrop-filter: blur(8px);
}
.lightbox[aria-hidden="false"] { display: grid; }
.lightbox img {
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.42);
  background: var(--ink);
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216,189,130,.45);
  border-radius: 50%;
  background: rgba(255,253,248,.94);
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 101;
}
.form-card button[disabled] {
  opacity: .68;
  cursor: wait;
  transform: none;
}

@media (max-width: 1024px) {
  .route-card { max-width: 760px; width: 100%; }
}

@media (max-width: 640px) {
  .route-map-head { padding: 20px 18px 14px; }
  .route-map-head strong { font-size: 23px; }
  .route-map { padding: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .route-map svg { min-width: 620px; }
  .route-legend { padding: 4px 16px 18px; }
  .gallery-grid .gallery-item,
  .gallery-grid .gallery-item.large {
    min-width: min(84vw, 420px);
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }
  .gallery-grid .gallery-item.large img,
  .gallery-grid .gallery-item img { min-height: 380px; }
}

@media (max-width: 420px) {
  .gallery-grid .gallery-item,
  .gallery-grid .gallery-item.large { min-width: 86vw; }
  .gallery-grid .gallery-item.large img,
  .gallery-grid .gallery-item img { min-height: 340px; }
  .lightbox img { max-height: 82vh; border-radius: 16px; }
}

.hp { position: absolute !important; left: -10000px !important; opacity: 0 !important; pointer-events: none !important; }


/* V5 Google Maps route card */
.google-map-card {
  background: rgba(255,253,248,.94);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.google-map-frame {
  padding: 14px;
}
.google-map-frame iframe {
  width: 100%;
  min-height: 470px;
  border: 0;
  display: block;
  border-radius: 24px;
  background: var(--ivory-2);
}
.map-actions {
  padding: 0 20px 16px;
}
.map-actions .btn {
  width: 100%;
}
.google-points {
  padding: 0 20px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.google-points > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11,37,48,.06);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 750;
}
.google-points b {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--champagne);
  font-size: 11px;
}
.map-note {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
}

@media (max-width: 1024px) {
  .google-map-card { max-width: 760px; width: 100%; }
}

@media (max-width: 640px) {
  .google-map-frame { padding: 10px; }
  .google-map-frame iframe { min-height: 360px; border-radius: 18px; }
  .google-points { padding: 2px 16px 14px; }
  .map-actions { padding: 0 16px 14px; }
  .map-note { padding: 0 18px 18px; }
}


/* V6 Google Maps markers-only block */
.google-map-canvas {
  width: 100%;
  min-height: 470px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ivory-2);
}
.map-fallback {
  display: none;
  min-height: 470px;
  border-radius: 24px;
  padding: 28px;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(251,246,236,.86), rgba(251,246,236,.86)),
    radial-gradient(circle at 68% 35%, rgba(182,138,74,.22), transparent 26%),
    radial-gradient(circle at 36% 72%, rgba(77,141,145,.20), transparent 30%),
    var(--ivory-2);
  border: 1px dashed rgba(182,138,74,.48);
  color: var(--ink);
}
.map-fallback strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.map-fallback span {
  max-width: 420px;
  color: var(--muted);
  font-weight: 650;
}

@media (max-width: 640px) {
  .google-map-canvas,
  .map-fallback {
    min-height: 360px;
    border-radius: 18px;
  }
  .map-fallback {
    padding: 20px;
  }
  .map-fallback strong {
    font-size: 22px;
  }
}


/* GDPR consent banner */
.gdpr-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 90;
  padding: 0 clamp(14px, 4vw, 32px);
}
.gdpr-banner[hidden] {
  display: none !important;
}
.gdpr-card {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,253,248,.96);
  border: 1px solid var(--gold-line);
  box-shadow: 0 22px 70px rgba(11,37,48,.22);
  backdrop-filter: blur(18px);
}
.gdpr-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.gdpr-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 620;
}
.gdpr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gdpr-actions .btn {
  min-height: 44px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .gdpr-card {
    grid-template-columns: 1fr;
  }
  .gdpr-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .gdpr-actions .btn {
    width: 100%;
  }
}

