@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --color-ink: #1a1a1a;
  --color-ink-light: #3d3d3d;
  --color-ink-muted: #6b6b6b;
  --color-cream: #f7f3ee;
  --color-cream-dark: #ede7df;
  --color-white: #ffffff;
  --color-gold: #b89a5a;
  --color-gold-dark: #9a7f45;
  --color-gold-light: #d4c094;
  --color-border: rgba(0,0,0,0.08);
  --color-border-strong: rgba(0,0,0,0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --nav-height: 72px;
  --section-padding: 100px 0;
  --container-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--color-ink-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-ink);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
}
.btn-outline:hover {
  background: var(--color-ink);
  color: var(--color-white);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-ink);
}
.btn-light:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
}
.btn-gold:hover {
  background: var(--color-gold-dark);
}

.btn-text {
  padding: 0;
  background: none;
  color: var(--color-ink);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-ink);
  padding-bottom: 2px;
}
.btn-text:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.btn:hover svg { transform: translateX(3px); }

/* ===== NAVIGATION ===== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 28px;
  width: auto;
  transition: filter var(--transition);
}

.nav:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
.nav:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav:not(.scrolled) .nav-links a::after { background: #fff; }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--color-gold);
  color: var(--color-white);
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--color-gold-dark); }
.nav-cta::after { display: none !important; }

.nav:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}
.nav:not(.scrolled) .nav-cta:hover {
  background: rgba(255,255,255,0.25);
}

.lang-toggle {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border: 1px solid var(--color-border-strong);
  color: var(--color-ink-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-toggle:hover { border-color: var(--color-gold); color: var(--color-gold); }
.nav:not(.scrolled) .lang-toggle {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.7);
}
.nav:not(.scrolled) .lang-toggle:hover { border-color: #fff; color: #fff; }

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--color-ink);
  transition: all var(--transition);
}
.nav:not(.scrolled) .nav-hamburger span { background: #fff; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-ink);
}

/* ===== HERO ===== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 680px;
}
.hero-content .eyebrow { color: var(--color-gold-light); }
.hero-content h1 { margin-bottom: 20px; line-height: 1.15; }
.hero-content .subtitle {
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  font-size: 1.05rem;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page hero (sub-pages) */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 340px;
  max-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}
.page-hero .hero-bg::after {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.55) 100%
  );
}
.page-hero .hero-content { max-width: 800px; }
.page-hero h1 { margin-bottom: 12px; }

/* ===== TRUST BAR ===== */

.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap; /* single line on desktop */
}

.trust-logos img {
  height: 26px;
  width: auto;
  max-width: 90px;
  flex-shrink: 0;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter var(--transition);
}
.trust-logos img:hover {
  filter: grayscale(0%) opacity(1);
}

/* Per-logo size overrides — trust bar */
.trust-logos img[alt*="IATA"]      { height: 38px; max-width: 52px; }
.trust-logos img[alt*="Virtuoso"]  { height: 16px; max-width: 90px; }
.trust-logos img[alt*="Wilderness"]{ height: 22px; max-width: 90px; }
.trust-logos img[alt*="Viking"]    { height: 26px; max-width: 60px; }
.trust-logos img[alt*="Virgin"]    { height: 36px; max-width: 38px; }
.trust-logos img[alt*="Small"]     { height: 30px; max-width: 46px; }
.trust-logos img[alt*="Marriott"]  { height: 36px; max-width: 52px; }
.trust-logos img[alt*="IHG"]       { height: auto; max-width: 78px; max-height: 16px; }
.trust-logos img[alt*="Accor"]     { height: 26px; max-width: 36px; }
.trust-logos img[alt*="Aman"]      { height: 13px; max-width: 90px; }

/* Mobile: wrap onto 3 lines */
@media (max-width: 900px) {
  .trust-logos {
    flex-wrap: wrap;
    gap: 20px;
  }
  .trust-logos img { flex-shrink: 1; }
}

/* Partner logos section (about page) */
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
}
.partner-logos img {
  height: 26px;
  width: auto;
  max-width: 90px;
  flex-shrink: 0;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter var(--transition);
}

/* Per-logo size overrides — partner logos (same rules) */
.partner-logos img[alt*="IATA"]      { height: 38px; max-width: 52px; }
.partner-logos img[alt*="Virtuoso"]  { height: 16px; max-width: 90px; }
.partner-logos img[alt*="Wilderness"]{ height: 22px; max-width: 90px; }
.partner-logos img[alt*="Viking"]    { height: 26px; max-width: 60px; }
.partner-logos img[alt*="Virgin"]    { height: 36px; max-width: 38px; }
.partner-logos img[alt*="Small"]     { height: 30px; max-width: 46px; }
.partner-logos img[alt*="Marriott"]  { height: 36px; max-width: 52px; }
.partner-logos img[alt*="IHG"]       { height: auto; max-width: 78px; max-height: 16px; }
.partner-logos img[alt*="Accor"]     { height: 26px; max-width: 36px; }
.partner-logos img[alt*="Aman"]      { height: 13px; max-width: 90px; }

@media (max-width: 900px) {
  .partner-logos {
    flex-wrap: wrap;
    gap: 20px;
  }
  .partner-logos img { flex-shrink: 1; }
}

.partner-logos img:hover {
  filter: grayscale(0%) opacity(1);
}

/* Footer credential logos */
.footer-credentials img {
  height: 18px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.35);
}

/* Contact sidebar logos */
.contact-sidebar .trust-logos img {
  height: 22px;
  filter: grayscale(100%) opacity(0.4);
}
.contact-sidebar .trust-logos img:hover {
  filter: grayscale(100%) opacity(0.7);
}

/* ===== SECTIONS ===== */

.section { padding: var(--section-padding); }
.section-cream { background: var(--color-cream); }

.section-header {
  margin-bottom: 56px;
}
.section-header.centered { text-align: center; }
.section-header.centered .subtitle { margin: 12px auto 0; }
.section-header h2 { margin-top: 4px; }

/* ===== SPLIT SECTIONS (text + image) ===== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-text h2 { margin-bottom: 20px; }
.split-text h3 { margin-bottom: 16px; }
.split-text p { color: var(--color-ink-muted); margin-bottom: 16px; }
.split-text .btn { margin-top: 12px; }

.split-image {
  position: relative;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== CARDS GRID ===== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.card:hover { border-color: var(--color-border-strong); transform: translateY(-4px); }

.card-image {
  height: 220px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover .card-image img { transform: scale(1.05); }

.card-body {
  padding: 28px;
}
.card-body h3 { margin-bottom: 10px; }
.card-body p {
  font-size: 0.92rem;
  color: var(--color-ink-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

/* ===== VALUE PROPS ===== */

.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.value-prop { text-align: center; }
.value-prop-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold-light);
  border-radius: 50%;
  color: var(--color-gold);
}
.value-prop-icon svg { width: 22px; height: 22px; }
.value-prop h4 { margin-bottom: 10px; }
.value-prop p { font-size: 0.9rem; color: var(--color-ink-muted); }

/* ===== FEATURES LIST ===== */

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 48px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
}
.feature-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 3px;
}

/* ===== CTA BAND ===== */

.cta-band {
  padding: 80px 0;
  background: var(--color-ink);
  color: var(--color-white);
  text-align: center;
}
.cta-band .eyebrow { color: var(--color-gold-light); }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .subtitle {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 32px;
}

/* ===== CONTACT FORM ===== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--color-border-strong);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-sidebar {
  padding: 36px;
  background: var(--color-cream);
}
.contact-sidebar h3 { margin-bottom: 24px; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-method:last-child { border-bottom: none; }
.contact-method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 18px; height: 18px; color: var(--color-gold); }
.contact-method-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
}
.contact-method-value {
  font-size: 0.92rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }

.footer-logo img {
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-credentials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-credentials span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* ===== ANIMATIONS ===== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .value-props { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-padding: 64px 0; --nav-height: 60px; }
  .container { padding: 0 20px; }
  .hero { min-height: 500px; }
  .hero-content h1 { font-size: 2rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .value-props { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-logos { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .page-hero { min-height: 280px; padding-bottom: 40px; }
}
