html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f4f0ea;
  color: #131313;
}

a {
  color: inherit;
}

/* Header */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  color: white;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  box-sizing: border-box;
}

header.scrolled {
  background: rgba(244, 240, 234, 0.96);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 16px 40px;
}

.logo a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  text-decoration: none;
}

.logo span {
  margin: 0 4px;
  opacity: 0.85;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  color: white;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #c7a46a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 620px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px;
  background: rgba(244, 240, 234, 0.96);
  border: 1px solid rgba(199, 164, 106, 0.22);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -30px;
  right: -30px;
  top: 100%;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-panel a {
  display: block;
  padding: 16px 16px;
  border-radius: 12px;
  color: #131313;
  text-decoration: none;
  background: rgba(255,255,255,0.52);
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-dropdown-panel a::after {
  display: none;
}

.nav-dropdown-panel a:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.nav-dropdown-panel span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #b9955b;
  margin-bottom: 6px;
}

.nav-dropdown-panel small {
  display: block;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(19,19,19,0.58);
}

.header-cta {
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 11px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

header.scrolled .logo a,
header.scrolled .main-nav a {
  color: #131313;
}

header.scrolled .header-cta {
  background: #c7a46a;
  color: white;
  border: none;
}

.whatsapp-nav img {
  width: 22px;
  height: 22px;
  display: block;
}

/* Buttons */

.btn {
  background: #c7a46a;
  color: white;
  padding: 14px 26px;
  display: inline-block;
  text-decoration: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #b18d54;
  transform: translateY(-2px);
}

.lux-whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px 14px 16px;
  border: 1px solid rgba(212, 171, 103, 0.58);
  border-radius: 8px;
  background: linear-gradient(135deg, #171310 0%, #2a211b 100%);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0,0,0,0.30);
  transition: all 0.3s ease;
}

.lux-whatsapp-button:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 190, 126, 0.95);
  box-shadow: 0 18px 45px rgba(0,0,0,0.40);
}

.lux-whatsapp-button img {
  width: 30px;
  height: 30px;
  display: block;
  filter: none;
}

.lux-whatsapp-content {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.lux-whatsapp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #b99258;
}

.lux-whatsapp-title {
  margin-top: 3px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
}

.lux-whatsapp-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: 4px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f0cf98 0%, #c79651 100%);
  color: #171310;
  font-size: 20px;
  font-weight: 400;
}


/* Footer */

.footer {
  background: #f4f0ea;
  color: #131313;
  padding: 80px 60px 50px;
}

.footer-logo {
  width: fit-content;
  margin: 0 auto 60px;
}

.footer-logo a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #131313;
  white-space: nowrap;
  text-decoration: none;
}

.footer-logo span {
  margin: 0 4px;
  opacity: 0.75;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: rgba(0,0,0,0.5);
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 14px;
  line-height: 1.6;
  color: #131313;
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c7a46a;
  color: white !important;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.whatsapp-btn img {
  width: 20px;
  height: 20px;
}


.lux-whatsapp-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 300px;
  max-width: 100%;
  padding: 24px;
  border: 1px solid rgba(212, 171, 103, 0.58);
  border-radius: 8px;
  background: linear-gradient(135deg, #171310 0%, #2a211b 100%);
  color: #ffffff !important;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.lux-whatsapp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 190, 126, 0.95);
  box-shadow: 0 22px 50px rgba(0,0,0,0.35);
}

.lux-whatsapp-card img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.lux-whatsapp-card-content {
  display: flex;
  flex-direction: column;
  padding-right: 36px;
  line-height: 1.25;
}

.lux-whatsapp-card-content strong {
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f0cf98;
}

.lux-whatsapp-card-content span {
  font-size: 14px;
  color: #ffffff;
}

.lux-whatsapp-card-content small {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

.lux-whatsapp-card-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f0cf98 0%, #c79651 100%);
  color: #171310;
  font-size: 18px;
}


/* City pages */

.city-page {
  background: #fbf7ef;
  color: #111;
}

.city-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 0 60px;
  box-sizing: border-box;
}

.city-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.24), rgba(0,0,0,.08));
}

.city-hero-content {
  position: relative;
  max-width: 720px;
  color: white;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #b9955b;
  font-weight: 600;
  margin-bottom: 18px;
}

.city-hero h1 {
  font-size: clamp(54px, 8vw, 110px);
  line-height: .95;
  margin: 0 0 28px;
  font-family: Georgia, serif;
  font-weight: 500;
}

.city-hero p {
  font-size: 19px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0;
}

.city-section {
  padding: 88px 7vw;
}

/* Shared section heading.
   The heading is aligned on the same 1180px grid as the content below.
   This avoids short, unnecessary line breaks on desktop. */
.section-heading {
  max-width: 1180px;
  margin: 0 auto 55px;
}

.section-heading h2 {
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.12;
  margin: 0 0 22px;
  font-family: Georgia, serif;
  font-weight: 500;
  text-wrap: balance;
}

.section-heading p {
  max-width: none;
  font-size: 17px;
  line-height: 1.8;
  color: #3f4650;
  margin: 0;
}

/* Monaco must-sees */

.must-see-editorial {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.must-see-editorial-image {
  height: 360px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0,0,0,.10);
}

.must-see-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.must-see-editorial-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,.12);
}

.must-see-editorial-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.must-see-editorial-list span {
  color: #b9955b;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
  padding-top: 6px;
}

.must-see-editorial-list h3 {
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  margin: 0 0 8px;
}

.must-see-editorial-list p {
  font-size: 15px;
  line-height: 1.7;
  color: #3f4650;
  margin: 0;
}

/* Tours */

.city-tours {
  background: transparent;
  padding-top: 78px;
}

.city-tours .section-heading {
  margin-bottom: 60px;
}

.city-tours .section-heading p {
  max-width: none;
}

.tour-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.tour-card {
  background: white;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  border-radius: 18px;
  overflow: hidden;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0,0,0,.12);
}

.tour-card-image {
  position: relative;
  height: 230px;
  background-size: cover;
  background-position: center;
}

.tour-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: white;
  color: #8f1d1d;
  padding: 9px 13px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
}

.tour-card-content {
  padding: 34px;
}

.tour-code {
  display: inline-block;
  color: #b9955b;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.tour-card h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 500;
  margin: 0 0 16px;
}

.tour-card p {
  color: #3f4650;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 26px;
}

.tour-details {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,.1);
  padding-top: 18px;
  margin-bottom: 26px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #8f1d1d;
  font-weight: 700;
}

.btn.btn-gold {
  background: #b9955b;
  color: white;
}

.btn.btn-gold:hover {
  background: #9f7c45;
}

.custom-card {
  background: #161616;
  color: white;
}

.custom-card .tour-card-content p,
.custom-card .tour-details {
  color: rgba(255,255,255,.78);
}

.custom-card .tour-details {
  border-top-color: rgba(255,255,255,.18);
}


/* Transfers */

.transfer-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.34)), url('../images/contact-riviera.jpg') center/cover no-repeat;
  color: white;
  padding: 120px 7vw;
  box-sizing: border-box;
}

.transfer-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.transfer-content h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.12;
  font-weight: 500;
  margin: 0 0 26px;
  text-wrap: balance;
}

.transfer-content p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  margin: 0 0 18px;
}

.transfer-content .btn {
  margin-top: 22px;
}

.transfer-services {
  display: grid;
  gap: 18px;
}

.transfer-services article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 24px;
  row-gap: 8px;
  padding: 28px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

.transfer-services span {
  grid-column: 1;
  grid-row: 1 / span 2;
  color: #c7a46a;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
  padding-top: 6px;
}

.transfer-services h3 {
  grid-column: 2;
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}

.transfer-services p {
  grid-column: 2;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin: 0;
}



/* Single tour pages */
.tour-hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 60px;
  box-sizing: border-box;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
}

.tour-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #131313;
}

.tour-hero-content h1 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  margin: 0 0 22px;
  font-family: Georgia, serif;
  font-weight: 500;
}

.tour-hero-content p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.tour-page,
.single-tour-page,
.private-tour-page,
.destination-tour-page {
  background: #f4f0ea;
  color: #131313;
}

.tour-page main,
.single-tour-page main,
.private-tour-page main,
.destination-tour-page main {
  overflow: hidden;
}

.tour-section,
.tour-overview,
.tour-itinerary,
.tour-practical,
.tour-related,
.tour-booking,
.private-booking-request,
[class*="tour-section"] {
  padding: 86px 7vw;
  box-sizing: border-box;
}

.tour-section > *,
.tour-overview > *,
.tour-itinerary > *,
.tour-practical > *,
.tour-related > *,
.tour-booking > *,
.private-booking-request > *,
[class*="tour-section"] > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.tour-section .section-eyebrow,
.tour-overview .section-eyebrow,
.tour-itinerary .section-eyebrow,
.tour-practical .section-eyebrow,
.tour-related .section-eyebrow,
.tour-booking .section-eyebrow,
.private-booking-request .section-eyebrow,
[class*="tour-section"] .section-eyebrow {
  display: block;
  margin-bottom: 18px;
}

.tour-section h2,
.tour-overview h2,
.tour-itinerary h2,
.tour-practical h2,
.tour-related h2,
.tour-booking h2,
.private-booking-request h2,
[class*="tour-section"] h2 {
  max-width: 1180px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.12;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 24px;
  text-wrap: balance;
}

.tour-section h3,
.tour-overview h3,
.tour-itinerary h3,
.tour-practical h3,
.tour-related h3,
.tour-booking h3,
.private-booking-request h3,
[class*="tour-section"] h3 {
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.tour-section p,
.tour-overview p,
.tour-itinerary p,
.tour-practical p,
.tour-related p,
.tour-booking p,
.private-booking-request p,
[class*="tour-section"] p {
  font-size: 16px;
  line-height: 1.8;
  color: #3f4650;
  margin-top: 0;
}

.tour-section ul,
.tour-overview ul,
.tour-itinerary ul,
.tour-practical ul,
[class*="tour-section"] ul {
  padding-left: 0;
  list-style: none;
}

.tour-section li,
.tour-overview li,
.tour-itinerary li,
.tour-practical li,
[class*="tour-section"] li {
  font-size: 16px;
  line-height: 1.75;
  color: #3f4650;
  margin-bottom: 12px;
}

.tour-overview,
.tour-intro,
.tour-summary {
  padding-top: 90px;
}

.tour-overview-grid,
.tour-intro-grid,
.tour-summary-grid,
.tour-practical-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.tour-detail-box,
.tour-details-box,
.tour-info-box,
.tour-sidebar {
  background: #ffffff;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.tour-detail-box h3,
.tour-details-box h3,
.tour-info-box h3,
.tour-sidebar h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 22px;
}

.tour-detail-box p,
.tour-details-box p,
.tour-info-box p,
.tour-sidebar p {
  margin-bottom: 8px;
}

.tour-steps,
.itinerary-steps,
.tour-points,
.tour-features,
.what-you-will-see,
.you-will-see-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 42px auto 0;
}

.tour-steps article,
.itinerary-steps article,
.tour-points article,
.tour-features article,
.what-you-will-see article,
.you-will-see-grid article {
  background: rgba(255,255,255,.65);
  padding: 34px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 35px rgba(0,0,0,.04);
}

.tour-steps span,
.itinerary-steps span,
.tour-points span,
.tour-features span,
.what-you-will-see span,
.you-will-see-grid span {
  display: inline-block;
  color: #b9955b;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.tour-steps h3,
.itinerary-steps h3,
.tour-points h3,
.tour-features h3,
.what-you-will-see h3,
.you-will-see-grid h3 {
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 12px;
}

.tour-related .tour-card-grid,
.you-may-also-like .tour-card-grid {
  margin-top: 42px;
}

.tour-booking,
.private-booking-request {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
}

.tour-booking::before,
.private-booking-request::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
  pointer-events: none;
}

.tour-booking > *,
.private-booking-request > * {
  position: relative;
  z-index: 1;
}

.tour-booking h2,
.private-booking-request h2,
.tour-booking p,
.private-booking-request p {
  color: white;
}

@media (max-width: 980px) {
  .tour-overview-grid,
  .tour-intro-grid,
  .tour-summary-grid,
  .tour-practical-grid,
  .tour-steps,
  .itinerary-steps,
  .tour-points,
  .tour-features,
  .what-you-will-see,
  .you-will-see-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* Restored single tour page layout
   These rules match eze-monaco-monte-carlo-tour.php and keep the other city pages untouched. */

.tour-page {
  background: #fbf7ef;
  color: #131313;
  overflow: hidden;
}

.tour-hero {
  min-height: 100vh;
  height: 100vh;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.28), rgba(0,0,0,.08));
  z-index: 1;
}

.tour-hero-content {
  color: white;
}

.tour-hero-content .section-eyebrow {
  color: #d5b070;
}

.tour-hero-content h1 {
  max-width: 860px;
  font-size: clamp(48px, 6.6vw, 94px);
  line-height: .96;
  margin: 0 0 26px;
}

.tour-hero-content p {
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.tour-hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 32px;
}

.tour-hero-details span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.10);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.tour-intro-content p {
  max-width: 680px;
}

.tour-summary-card {
  background: #ffffff;
  padding: 38px;
  box-shadow: 0 20px 55px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
}

.tour-summary-card h3 {
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 24px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,.10);
}

.summary-line span {
  color: rgba(0,0,0,.48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.summary-line strong {
  max-width: 55%;
  text-align: right;
  font-size: 14px;
  line-height: 1.5;
  color: #131313;
}

.tour-summary-card .btn {
  margin-top: 24px;
}

.tour-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.tour-highlight-grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tour-highlight-card {
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  border-radius: 18px;
  overflow: hidden;
}

.tour-highlight-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tour-highlight-content {
  padding: 34px;
}

.tour-highlight-content span,
.practical-grid article span {
  display: inline-block;
  color: #b9955b;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.tour-highlight-content h3,
.practical-grid article h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 500;
  margin: 0 0 14px;
}

.tour-highlight-content p,
.practical-grid article p {
  font-size: 15px;
  line-height: 1.75;
  color: #3f4650;
  margin: 0;
}

.itinerary-section {
  background: #f4f0ea;
}

.itinerary-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.itinerary-content h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.12;
  font-weight: 500;
  margin: 0 0 24px;
  text-wrap: balance;
}

.itinerary-content p {
  max-width: 520px;
}

.itinerary-section .itinerary-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  max-width: none;
  border-top: 1px solid rgba(0,0,0,.12);
}

.itinerary-section .itinerary-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 26px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.12);
  box-shadow: none;
}

.itinerary-section .itinerary-steps span {
  margin: 0;
  padding-top: 7px;
}

.itinerary-section .itinerary-steps h3 {
  margin: 0 0 8px;
}

.itinerary-section .itinerary-steps p {
  margin: 0;
}

.tour-full-image,
.tour-cta {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 110px 7vw;
  box-sizing: border-box;
}

.tour-full-image > div,
.tour-cta > div {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.tour-full-image h2,
.tour-cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.12;
  font-weight: 500;
  margin: 0 0 24px;
  color: white;
  text-wrap: balance;
}

.tour-full-image p,
.tour-cta p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.84);
  margin: 0 0 28px;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.practical-grid article {
  background: #ffffff;
  padding: 32px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 14px 35px rgba(0,0,0,.05);
  border-radius: 18px;
}

.related-tours .tour-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tour-cta {
  min-height: 560px;
}

.tour-cta .section-eyebrow {
  color: #d5b070;
}

/* Wider headings for selected tour sections */

.tour-highlights .section-heading,
.practical-section .section-heading {
  max-width: 1180px;
}

.tour-highlights .section-heading h2,
.practical-section .section-heading h2 {
  max-width: 1180px;
}

@media (max-width: 1180px) {
  .tour-highlight-grid,
  .practical-grid,
  .itinerary-inner {
    max-width: none;
  }

  .practical-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .tour-hero {
    padding: 120px 24px 70px;
  }

  .tour-hero-content h1 {
    font-size: clamp(44px, 12vw, 68px);
  }

  .tour-intro-grid,
  .tour-highlight-grid,
  .itinerary-inner,
  .related-tours .tour-card-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .tour-summary-card,
  .tour-highlight-content,
  .practical-grid article {
    padding: 28px;
  }

  .tour-full-image,
  .tour-cta {
    min-height: auto;
    padding: 90px 24px;
  }
}

@media (max-width: 640px) {
  .tour-hero-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .summary-line {
    display: block;
  }

  .summary-line strong {
    display: block;
    max-width: none;
    text-align: left;
    margin-top: 8px;
  }

  .itinerary-section .itinerary-steps article {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .tour-highlights .section-heading,
  .practical-section .section-heading,
  .related-tours .section-heading {
    max-width: 1180px;
  }

  .tour-highlights .section-heading h2,
  .practical-section .section-heading h2,
  .related-tours .section-heading h2 {
    max-width: 1180px;
  }
}



/* Destination cards clickable indicator */
.card {
  text-decoration: none;
  cursor: pointer;
}

.card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d8b573;
  opacity: 0.95;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  transform: translateY(6px);
  transition: transform 0.45s ease, color 0.35s ease, opacity 0.35s ease;
}

.card:hover .card-link {
  color: #f0cf98;
  opacity: 1;
  transform: translateY(0);
}


/* Responsive */

@media (max-width: 1180px) {
  .section-heading,
  .must-see-editorial,
  .tour-card-grid,
  .transfer-inner {
    max-width: none;
  }
}

@media (max-width: 980px) {
  .must-see-editorial {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .must-see-editorial-image {
    height: 260px;
  }

  .must-see-editorial-list article {
    grid-template-columns: 44px 1fr;
  }

  .tour-card-grid {
    grid-template-columns: 1fr;
  }

  .city-hero {
    min-height: auto;
    padding: 120px 24px 70px;
  }
  
  .transfer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .transfer-services article {
    grid-template-columns: 44px 1fr;
    padding: 24px;
  }
}

@media (max-width: 900px) {
  header {
    padding: 16px 20px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-dropdown-panel {
  display: none;
}

  .logo a {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .city-section {
    padding: 70px 24px;
  }

  .section-heading p {
    line-height: 1.7;
  }

  .footer {
    padding: 60px 24px 40px;
  }

  .footer-logo a {
    white-space: normal;
    text-align: center;
    line-height: 1.6;
  }

  .footer-columns {
    flex-direction: column;
    text-align: center;
  }
}

/* Hero height consistency
   Keeps all main hero sections filling a full desktop viewport, like the homepage. */
.hero,
.city-hero,
.tour-hero,
.approach-hero,
.cruise-hero,
.fleet-hero,
.contact-hero {
  height: 100vh;
  min-height: 100vh;
}

#hero.home-hero-carousel {
  position: relative;
  overflow: hidden;
  background: #0b0806 url('images/hero1.jpg') center/cover no-repeat;
}

#hero.home-hero-carousel .hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

#hero.home-hero-carousel .hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.4s ease, transform 6.5s ease;
}

#hero.home-hero-carousel .hero-slide.is-active {
  opacity: 1;
}

#hero.home-hero-carousel .hero-slide.is-zooming {
  transform: scale(1.045);
}

#hero.home-hero-carousel .hero-content {
  position: relative;
  z-index: 2;
}

/* Keep mobile heroes more flexible to avoid oversized empty space. */
@media (max-width: 900px) {
  .hero,
  .city-hero,
  .tour-hero,
  .approach-hero,
  .cruise-hero,
  .fleet-hero,
  .contact-hero {
    height: auto;
    min-height: auto;
  }

  #hero.home-hero-carousel .hero-carousel {
    width: auto;
    max-width: none;
  }
}


/* Homepage luxury stats section */
.home-luxury-stats-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 60px;
  background:
    radial-gradient(circle at 14% 16%, rgba(213, 176, 112, 0.26), transparent 31%),
    radial-gradient(circle at 86% 72%, rgba(185, 149, 91, 0.16), transparent 30%),
    linear-gradient(135deg, #0f0c09 0%, #17120e 46%, #0c1117 100%);
  color: #ffffff;
  box-sizing: border-box;
}

.home-luxury-stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.34;
  pointer-events: none;
}

.home-luxury-stats-section::after {
  content: "";
  position: absolute;
  inset: 34px 60px auto;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(213, 176, 112, 0.68), transparent);
  pointer-events: none;
}

.home-luxury-stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(600px, 1.18fr);
  gap: 72px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.home-luxury-stats-copy {
  max-width: 540px;
}

.luxury-stats-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #d5b070;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.home-luxury-stats-copy h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.home-luxury-stats-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: 17px;
  line-height: 1.85;
}

.luxury-stats-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(213, 176, 112, 0.30);
}

.luxury-stats-signature span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(213, 176, 112, 0.42);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-luxury-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(213, 176, 112, 0.36);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.035));
  box-shadow: 0 34px 95px rgba(0,0,0,0.42);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.home-luxury-stat-card {
  position: relative;
  min-width: 0;
  min-height: 248px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  border-right: 1px solid rgba(213, 176, 112, 0.26);
  border-bottom: 1px solid rgba(213, 176, 112, 0.26);
  box-sizing: border-box;
}

.home-luxury-stat-card:nth-child(2n) {
  border-right: 0;
}

.home-luxury-stat-card:nth-child(n+3) {
  border-bottom: 0;
}

.home-luxury-stat-card::before {
  content: attr(data-index);
  position: absolute;
  top: 30px;
  right: 32px;
  color: rgba(213, 176, 112, 0.46);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-luxury-stat-number {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: clamp(58px, 5.6vw, 92px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.home-luxury-stat-number .stat-prefix,
.home-luxury-stat-number .stat-suffix {
  color: #d5b070;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.home-luxury-stat-number .stat-suffix.stat-word {
  margin-left: 5px;
  font-size: clamp(15px, 1.35vw, 21px);
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.home-luxury-stat-card h3 {
  max-width: 245px;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.28;
}

.home-luxury-stat-card p {
  max-width: 275px;
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.75;
}

.home-luxury-stat-card:hover {
  background: rgba(255,255,255,0.055);
}

.home-testimonials-section {
  background: #fbf7ef;
  color: #131313;
  padding: 90px 60px;
  box-sizing: border-box;
  overflow: hidden;
}

.home-testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-testimonials-section .home-section-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #b9955b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-testimonials-section .home-section-heading {
  margin: 0;
}

.home-testimonials-section .home-section-heading h2 {
  margin: 0 0 18px;
  color: #131313;
  font-family: Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-testimonials-section .home-section-heading p {
  margin: 0;
  color: #3f4650;
  font-size: 17px;
  line-height: 1.8;
}

.home-testimonials-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 34px;
}

.home-testimonials-top .home-section-heading {
  max-width: 680px;
  text-align: left;
}

.review-controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.review-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(185, 149, 91, 0.42);
  border-radius: 999px;
  background: #ffffff;
  color: #131313;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.review-arrow:hover {
  background: #b9955b;
  color: #ffffff;
  transform: translateY(-2px);
}

.testimonials-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 28px;
  scrollbar-width: none;
  cursor: grab;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonials-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 365px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(19, 19, 19, 0.06);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.07);
  scroll-snap-align: start;
  box-sizing: border-box;
}

.testimonial-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.testimonial-tour {
  color: #1f2a34;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.testimonial-quote-mark {
  color: rgba(185, 149, 91, 0.22);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.7;
}

.testimonial-card blockquote {
  margin: 0;
  color: #27313b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(19, 19, 19, 0.10);
}

.testimonial-name {
  display: block;
  margin-bottom: 6px;
  color: #131313;
  font-size: 15px;
  font-weight: 700;
}

.testimonial-location {
  color: #6a7076;
  font-size: 13px;
  line-height: 1.5;
}

.testimonial-rating {
  color: #b9955b;
  font-size: 13px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.testimonials-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.testimonials-trust-bar article {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(19, 19, 19, 0.06);
}

.testimonials-trust-bar strong {
  display: block;
  margin-bottom: 6px;
  color: #131313;
  font-size: 16px;
}

.testimonials-trust-bar span {
  color: #5b6269;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .home-luxury-stats-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-luxury-stats-copy,
  .home-luxury-stats-copy p {
    max-width: 760px;
  }
}

@media (max-width: 1050px) {
  .testimonials-trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 760px) {
  .home-luxury-stats-section,
  .home-testimonials-section {
    padding: 76px 24px;
  }

  .home-luxury-stats-section::after {
    left: 24px;
    right: 24px;
  }

  .home-luxury-stats-grid,
  .testimonials-trust-bar {
    grid-template-columns: 1fr;
  }

  .home-luxury-stat-card,
  .home-luxury-stat-card:nth-child(2n),
  .home-luxury-stat-card:nth-child(n+3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 176, 112, 0.26);
  }

  .home-luxury-stat-card:last-child {
    border-bottom: 0;
  }

  .home-luxury-stats-copy h2 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .home-luxury-stat-number {
    font-size: clamp(54px, 17vw, 78px);
  }

  .home-testimonials-top {
    display: block;
  }

  .review-controls {
    margin-top: 24px;
  }

  .testimonial-card {
    flex-basis: 86%;
    min-height: 390px;
    padding: 28px;
  }
}

/* Homepage signature metrics - luxury version */
.home-signature-metrics {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 60px 126px;
  background:
    radial-gradient(circle at 12% 12%, rgba(213, 176, 112, 0.22), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(185, 149, 91, 0.16), transparent 32%),
    linear-gradient(135deg, #0b0806 0%, #15100d 46%, #090d12 100%);
  color: #ffffff;
  box-sizing: border-box;
}

.home-signature-metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.32;
  pointer-events: none;
}

.home-signature-metrics::after {
  content: "";
  position: absolute;
  inset: 34px 60px auto;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(213, 176, 112, 0.7), transparent);
  pointer-events: none;
}

.home-signature-metrics__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.home-signature-metrics__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 62px;
}

.home-signature-metrics__eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #d5b070;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-signature-metrics__intro h2 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: clamp(46px, 5.6vw, 86px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.home-signature-metrics__intro p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.85;
}

.home-signature-metrics__destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-signature-metrics__destinations span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(213, 176, 112, 0.42);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-signature-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(213, 176, 112, 0.36);
  border-bottom: 1px solid rgba(213, 176, 112, 0.36);
}

.home-signature-metric {
  position: relative;
  min-width: 0;
  padding: 42px 34px 44px;
  border-left: 1px solid rgba(213, 176, 112, 0.24);
  box-sizing: border-box;
}

.home-signature-metric:first-child {
  border-left: 0;
}

.home-signature-metric::before {
  content: attr(data-index);
  display: block;
  margin-bottom: 34px;
  color: rgba(213, 176, 112, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-signature-metric__number {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 28px;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: clamp(58px, 6vw, 104px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.home-signature-metric__number .stat-prefix,
.home-signature-metric__number .stat-suffix {
  color: #d5b070;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.home-signature-metric__number .stat-suffix.stat-word {
  margin-left: 5px;
  font-size: clamp(14px, 1.2vw, 19px);
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.home-signature-metric h3 {
  max-width: 245px;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.28;
}

.home-signature-metric p {
  max-width: 270px;
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .home-signature-metrics__intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-signature-metrics__intro p {
    max-width: 760px;
  }

  .home-signature-metrics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-signature-metric:nth-child(odd) {
    border-left: 0;
  }

  .home-signature-metric:nth-child(n+3) {
    border-top: 1px solid rgba(213, 176, 112, 0.24);
  }
}

@media (max-width: 720px) {
  .home-signature-metrics {
    padding: 78px 24px 86px;
  }

  .home-signature-metrics::after {
    left: 24px;
    right: 24px;
  }

  .home-signature-metrics__intro {
    margin-bottom: 42px;
  }

  .home-signature-metrics__intro h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .home-signature-metrics__grid {
    grid-template-columns: 1fr;
  }

  .home-signature-metric,
  .home-signature-metric:nth-child(odd) {
    padding: 34px 0;
    border-left: 0;
    border-top: 1px solid rgba(213, 176, 112, 0.24);
  }

  .home-signature-metric:first-child {
    border-top: 0;
  }
}

/* Travel agencies & tour operators page - clean centralized CSS v7 */
.partners-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(213, 176, 112, 0.18), transparent 28%),
    linear-gradient(180deg, #f4f0ea 0%, #fbf7ef 46%, #f4f0ea 100%);
  color: #131313;
}

.partners-page main {
  overflow: hidden;
}

.partners-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 60px 96px;
  color: #ffffff;
  background-color: #0b0806;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  box-sizing: border-box;
  overflow: hidden;
}

.partners-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,6,0.86) 0%, rgba(7,7,6,0.68) 34%, rgba(7,7,6,0.34) 62%, rgba(7,7,6,0.08) 100%),
    linear-gradient(180deg, rgba(7,7,6,0.34) 0%, rgba(7,7,6,0.04) 42%, rgba(7,7,6,0.20) 100%),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, auto, 82px 82px, 82px 82px;
  pointer-events: none;
}

.partners-hero::after {
  content: "";
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(213, 176, 112, 0.72), transparent);
}

.partners-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.partners-hero-copy {
  max-width: 780px;
}

.partners-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: #d5b070;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.partners-hero h1 {
  max-width: 920px;
  margin: 0 0 26px;
  font-family: Georgia, serif;
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.partners-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  line-height: 1.85;
}

.partners-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.partners-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.10em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-sizing: border-box;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.partners-btn:hover {
  transform: translateY(-2px);
}

.partners-btn-gold {
  background: #c7a46a;
  color: #ffffff;
}

.partners-btn-gold:hover {
  background: #b18d54;
}

.partners-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.48);
  color: #ffffff;
}

.partners-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.82);
}


.partners-section {
  padding: 96px 60px;
  box-sizing: border-box;
}

.partners-section-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 18%, rgba(213, 176, 112, 0.20), transparent 29%),
    linear-gradient(135deg, #0f0c09 0%, #17120e 48%, #101720 100%);
}

.partners-container {
  max-width: 1220px;
  margin: 0 auto;
}

.partners-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.partners-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.partners-heading h2,
.partners-global-network-content h2,
.partnership-cta h2 {
  margin: 0 0 22px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.partners-heading p,
.partners-global-network-content p {
  margin: 0;
  color: #3f4650;
  font-size: 17px;
  line-height: 1.8;
}

.partners-section-dark .partners-heading p {
  color: rgba(255,255,255,0.72);
}

.partner-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.partner-service-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(19, 19, 19, 0.07);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 20px 55px rgba(0,0,0,0.06);
  box-sizing: border-box;
  overflow: hidden;
}

.partner-service-card::after {
  content: attr(data-index);
  position: absolute;
  right: 28px;
  top: 26px;
  color: rgba(185, 149, 91, 0.24);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.partner-service-card span,
.partner-reason-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: #b9955b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partner-service-card h3,
.partner-reason-card h3 {
  margin: 0 0 13px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.14;
}

.partner-service-card p,
.partner-reason-card p {
  margin: 0;
  color: #4c555e;
  font-size: 15px;
  line-height: 1.75;
}

.partner-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(213, 176, 112, 0.32);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035));
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}

.partner-reason-card {
  padding: 30px;
  min-height: 245px;
  border-right: 1px solid rgba(213, 176, 112, 0.22);
  border-bottom: 1px solid rgba(213, 176, 112, 0.22);
  box-sizing: border-box;
}

.partner-reason-card:nth-child(4n) {
  border-right: 0;
}

.partner-reason-card:nth-child(n+5) {
  border-bottom: 0;
}

.partner-reason-card h3 {
  color: #ffffff;
  font-size: 24px;
}

.partner-reason-card p {
  color: rgba(255,255,255,0.70);
}

.partners-workwith {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 62px;
  align-items: start;
}

.partners-workwith-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partners-workwith-list li {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(185, 149, 91, 0.20);
  border-radius: 16px;
  background: rgba(255,255,255,0.68);
  color: #26313a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 12px 30px rgba(0,0,0,0.045);
  box-sizing: border-box;
}

.partners-global-network-section {
  padding-top: 40px;
}

.partners-global-network {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 54px;
  align-items: center;
}

.partners-global-network-image {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(0,0,0,0.14);
  background: #121212;
}

.partners-global-network-image img {
  display: block;
  width: 100%;
  height: auto;
}

.partners-global-network-content {
  max-width: 520px;
}

.partnership-cta {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  padding: 64px;
  border-radius: 34px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(9, 7, 6, 0.88), rgba(18, 14, 10, 0.66)),
    radial-gradient(circle at 90% 18%, rgba(213, 176, 112, 0.34), transparent 30%),
    linear-gradient(135deg, #0f0c09, #101720);
  box-shadow: 0 28px 80px rgba(0,0,0,0.18);
}

.partnership-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.35;
  pointer-events: none;
}

.partnership-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.42fr);
  gap: 44px;
  align-items: center;
}

.partnership-cta h2 {
  font-size: clamp(38px, 4.4vw, 66px);
}

.partnership-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 17px;
  line-height: 1.85;
}

.partnership-contact-card {
  padding: 30px;
  border: 1px solid rgba(213, 176, 112, 0.34);
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.partnership-contact-card strong {
  display: block;
  margin-bottom: 10px;
  color: #d5b070;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partnership-contact-card p {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.7;
}

.partnership-contact-card a:not(.partners-btn) {
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  text-decoration: none;
}

.partnership-contact-card a:not(.partners-btn):hover {
  color: #d5b070;
}

@media (max-width: 1180px) {
  .partners-workwith,
  .partners-global-network,
  .partnership-cta-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .partner-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-reason-card:nth-child(4n) {
    border-right: 1px solid rgba(213, 176, 112, 0.22);
  }

  .partner-reason-card:nth-child(2n) {
    border-right: 0;
  }

  .partner-reason-card:nth-child(n+5) {
    border-bottom: 1px solid rgba(213, 176, 112, 0.22);
  }

  .partner-reason-card:nth-child(n+7) {
    border-bottom: 0;
  }

  .partners-global-network-content {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .partners-hero {
    min-height: auto;
    padding: 132px 24px 76px;
  }

  .partners-hero::after {
    left: 24px;
    right: 24px;
  }

  .partners-section {
    padding: 72px 24px;
  }


  .partner-service-card,
  .partnership-contact-card {
    padding: 26px;
  }

  .partnership-cta {
    padding: 42px 26px;
    border-radius: 26px;
  }
}

@media (max-width: 680px) {
  .partners-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .partners-hero p,
  .partners-heading p,
  .partners-global-network-content p,
  .partnership-cta p {
    font-size: 16px;
  }

  .partner-services-grid,
  .partner-reasons-grid,
  .partners-workwith-list {
    grid-template-columns: 1fr;
  }

  .partner-reason-card,
  .partner-reason-card:nth-child(2n),
  .partner-reason-card:nth-child(4n),
  .partner-reason-card:nth-child(n+5),
  .partner-reason-card:nth-child(n+7) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 176, 112, 0.22);
  }

  .partner-reason-card:last-child {
    border-bottom: 0;
  }


  .partners-hero-actions {
    display: grid;
  }

  .partners-btn {
    width: 100%;
  }
}


@media (max-width: 900px) {
  .partners-hero {
    background-position: center right;
  }
}

/* Legal document pages - privacy policy / legal notice / terms centralized layout */
.legal-document-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(213, 176, 112, 0.18), transparent 28%),
    linear-gradient(180deg, #f4f0ea 0%, #fbf7ef 48%, #f4f0ea 100%);
  color: #131313;
}

.legal-document-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  padding: 150px 60px 92px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(10, 8, 6, 0.88), rgba(18, 14, 10, 0.62), rgba(16, 22, 30, 0.48)),
    radial-gradient(circle at 82% 24%, rgba(213, 176, 112, 0.30), transparent 30%),
    linear-gradient(135deg, #0e0a07 0%, #19120d 54%, #101720 100%);
  box-sizing: border-box;
  overflow: hidden;
}

.legal-document-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.38;
  pointer-events: none;
}

.legal-document-hero::after {
  content: "";
  position: absolute;
  inset: auto 60px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(213, 176, 112, 0.72), transparent);
}

.legal-document-hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.legal-document-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: #d5b070;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.legal-document-hero h1 {
  max-width: 920px;
  margin: 0 0 26px;
  font-family: Georgia, serif;
  font-size: clamp(48px, 7vw, 94px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.legal-document-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 18px;
  line-height: 1.8;
}

.legal-document-main {
  padding: 82px 60px 110px;
  box-sizing: border-box;
}

.legal-document-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
}

.legal-document-summary {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(185, 149, 91, 0.22);
  border-radius: 24px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
  box-sizing: border-box;
}

.legal-document-summary strong {
  display: block;
  margin-bottom: 12px;
  color: #131313;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-document-summary p {
  margin: 0 0 22px;
  color: #5a6168;
  font-size: 13px;
  line-height: 1.7;
}

.legal-document-summary nav {
  display: grid;
  gap: 8px;
}

.legal-document-summary nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: #131313;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.legal-document-summary nav a::after {
  content: "→";
  color: #b9955b;
  font-weight: 700;
}

.legal-document-content {
  display: grid;
  gap: 22px;
}

.legal-document-card {
  position: relative;
  padding: 42px 46px;
  border: 1px solid rgba(19, 19, 19, 0.06);
  border-radius: 24px;
  background: rgba(255,255,255,0.74);
  box-shadow: 0 18px 45px rgba(0,0,0,0.055);
  box-sizing: border-box;
}

.legal-document-section-number {
  display: inline-block;
  margin-bottom: 18px;
  color: #b9955b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.legal-document-card h2 {
  margin: 0 0 20px;
  color: #131313;
  font-family: Georgia, serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.legal-document-card p {
  margin: 0 0 16px;
  color: #3f4650;
  font-size: 16px;
  line-height: 1.82;
}

.legal-document-card p:last-child {
  margin-bottom: 0;
}

.legal-document-card a {
  color: #9c7440;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(185, 149, 91, 0.32);
}

.legal-document-info-box {
  margin: 24px 0;
  padding: 24px;
  border: 1px solid rgba(185, 149, 91, 0.22);
  border-radius: 18px;
  background: rgba(244, 240, 234, 0.72);
}

.legal-document-contact-box {
  display: inline-block;
  min-width: 280px;
}

.legal-document-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.legal-document-list li {
  position: relative;
  padding-left: 22px;
  color: #3f4650;
  font-size: 15px;
  line-height: 1.72;
}

.legal-document-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #b9955b;
}

@media (max-width: 980px) {
  .legal-document-hero {
    min-height: auto;
    padding: 130px 24px 72px;
  }

  .legal-document-main {
    padding: 58px 24px 80px;
  }

  .legal-document-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-document-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .legal-document-hero h1 {
    font-size: clamp(44px, 15vw, 66px);
  }

  .legal-document-hero p {
    font-size: 16px;
  }

  .legal-document-card {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .legal-document-contact-box {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
}
