/* =========================================================
   Luxury Travel Experiences
   Modern Header + Footer
   No external CDN dependencies
========================================================= */

:root {
  --ink: #070908;
  --forest: #07120d;
  --forest-2: #0b1a13;
  --green: #29c46f;
  --green-soft: #68df9d;
  --ivory: #f3efe7;
  --sand: #d9cdbb;
  --paper: #fbfaf7;
  --muted: #9ca69f;
  --muted-dark: #68736c;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.20);
  --radius-cut: 0 24px 0 24px;
  --shell: min(1380px, calc(100% - 72px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: relative;
  z-index: 100;
  background:
    radial-gradient(circle at 14% 0%, rgba(41, 196, 111, 0.10), transparent 25%),
    rgba(7, 9, 8, 0.98);
  border-bottom: 1px solid rgba(243, 239, 231, 0.17);
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 205, 187, 0.35),
    transparent
  );
}

.header-shell {
  width: var(--shell);
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: auto;
  min-width: 310px;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.32));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand-title {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.2px;
}

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

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.1px;
  padding: 42px 0 37px;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 27px;
  height: 2px;
  background: var(--green);
  border-radius: 99px;
  transition: right 220ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 20px;
  margin-left: 7px;
  color: #04140b;
  background: linear-gradient(135deg, var(--green-soft), var(--green));
  border-radius: var(--radius-cut);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(41, 196, 111, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(41, 196, 111, 0.24);
}

.nav-cta .arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 18, 13, 0.12);
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
}

/* =========================================================
   SAMPLE TRAVEL STAGE
   This is only visual spacing between header and footer.
========================================================= */

.travel-stage {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.18), rgba(251, 250, 247, 0.96)),
    radial-gradient(circle at 25% 25%, rgba(41, 196, 111, 0.13), transparent 30%),
    linear-gradient(135deg, #e9e2d7, #f8f6f0 46%, #e2e8df);
}

.travel-stage::before,
.travel-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(7, 18, 13, 0.10);
  border-radius: 50%;
}

.travel-stage::before {
  width: 540px;
  height: 540px;
  left: -270px;
  top: -270px;
}

.travel-stage::after {
  width: 340px;
  height: 340px;
  right: -170px;
  bottom: -170px;
}

.travel-stage__content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #567060;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.travel-stage h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -3px;
}

.travel-stage p {
  max-width: 610px;
  margin: 24px auto 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.8;
}

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

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 12% 4%, rgba(41, 196, 111, 0.10), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(217, 205, 187, 0.06), transparent 25%),
    linear-gradient(180deg, var(--forest), #050a07 72%);
  overflow: hidden;
}

.footer-shell {
  width: var(--shell);
  margin: 0 auto;
}

.footer-lead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  padding: 76px 0 58px;
}

.footer-lead__copy {
  max-width: 760px;
}

.footer-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--green-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.footer-lead h2 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2.2px;
}

.footer-lead p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.footer-primary-cta {
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 16px 17px 16px 20px;
  border: 1px solid rgba(104, 223, 157, 0.65);
  border-radius: var(--radius-cut);
  font-size: 13px;
  font-weight: 750;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-primary-cta:hover {
  background: rgba(41, 196, 111, 0.12);
  transform: translateY(-2px);
}

.footer-primary-cta__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #031109;
  background: var(--green);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 62px;
  padding: 56px 0 52px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.25));
}

.footer-brand strong {
  display: block;
  max-width: 210px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.16;
  font-weight: 400;
}

.footer-brand span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.footer-col h3 {
  margin: 0 0 20px;
  color: var(--ivory);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.1px;
}

.footer-col > a,
.footer-col > p {
  display: block;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.footer-col > a {
  transition: color 160ms ease, transform 160ms ease;
}

.footer-col > a:hover {
  color: var(--green-soft);
  transform: translateX(3px);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-row a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #031109;
  transform: translateY(-2px);
}

.footer-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 23px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.payment-label {
  display: block;
  color: #e8ebe8;
  font-size: 12px;
  font-weight: 700;
}

.payment-note {
  display: block;
  margin-top: 4px;
  color: #718078;
  font-size: 10px;
}

.payment-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-badges span {
  padding: 7px 10px;
  color: #1b211d;
  background: #f8f7f3;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0 34px;
  color: #69756e;
  font-size: 10px;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a:hover {
  color: #fff;
}

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

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 46px, 1380px);
  }

  .main-nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 12px;
  }

  .brand {
    min-width: auto;
  }

  .brand-subtitle {
    display: none;
  }
}

@media (max-width: 980px) {
  .header-shell {
    min-height: 88px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 89px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    background: rgba(5, 7, 6, 0.99);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    justify-content: space-between;
    margin: 18px 0 0;
  }

  .footer-lead {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 30px, 1380px);
  }

  .brand-title {
    font-size: 16px;
  }

  .travel-stage {
    min-height: 320px;
    padding: 60px 18px;
  }

  .travel-stage h1 {
    font-size: 54px;
    letter-spacing: -2px;
  }

  .footer-lead {
    padding: 58px 0 42px;
  }

  .footer-lead h2 {
    font-size: 42px;
    letter-spacing: -1.4px;
  }

  .footer-primary-cta {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 0;
  }

  .footer-payment {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-badges {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   LIGHT MINIMAL OVERRIDE
   Cleaner, brighter visual direction while preserving markup.
========================================================= */
:root {
  --ink: #142019;
  --forest: #ffffff;
  --forest-2: #f7faf8;
  --green: #238a55;
  --green-soft: #2f9d64;
  --ivory: #142019;
  --paper: #ffffff;
  --muted: #68756d;
  --muted-dark: #68756d;
  --line: #e5ebe7;
  --line-soft: #eef2ef;
  --shadow: 0 14px 40px rgba(21, 43, 30, .08);
  --radius-cut: 0 18px 0 18px;
}
.site-header { background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); }
.site-header::after { display:none; }
.header-shell { min-height: 88px; gap: 30px; }
.brand { gap: 13px; }
.brand-logo { width: 58px; height:58px; filter:none; }
.brand-title { color:var(--ink); font-size:18px; }
.brand-subtitle { color:#8b978f; letter-spacing:1.7px; }
.main-nav { gap:24px; }
.nav-link { color:#566159; padding:35px 0 31px; font-weight:600; }
.nav-link:hover,.nav-link.is-active { color:var(--ink); }
.nav-link::after { bottom:22px; height:1.5px; background:var(--green); }
.nav-cta { color:#fff; background:var(--green); box-shadow:none; padding:12px 16px 12px 18px; font-weight:700; }
.nav-cta:hover { box-shadow:0 8px 22px rgba(35,138,85,.15); }
.nav-cta .arrow { background:rgba(255,255,255,.15); }
.menu-toggle { border-color:var(--line); }
.menu-toggle span { background:var(--ink); }
.travel-stage { background:#f7f9f7; }
.travel-stage::before,.travel-stage::after { border-color:#e5ebe7; }
.site-footer { color:var(--ink); background:#f6f8f6; border-top:1px solid var(--line); }
.footer-lead { padding:58px 0 44px; }
.footer-kicker { color:var(--green); }
.footer-lead h2 { color:var(--ink); font-size:clamp(36px,4vw,58px); line-height:1.04; letter-spacing:-1.7px; }
.footer-lead p,.footer-col > a,.footer-col > p,.footer-brand span { color:var(--muted); }
.footer-primary-cta { border-color:#b9d7c6; color:var(--ink); }
.footer-primary-cta:hover { background:#edf5f0; }
.footer-primary-cta__icon { color:#fff; background:var(--green); }
.footer-divider { background:var(--line); }
.footer-grid { gap:52px; padding:42px 0; }
.footer-brand img { width:72px; height:72px; filter:none; }
.footer-brand strong { color:var(--ink); }
.footer-col h3 { color:var(--ink); }
.footer-col > a:hover { color:var(--green); }
.social-row a { border-color:#d7dfda; color:var(--ink); background:#fff; }
.social-row a:hover { background:var(--green); border-color:var(--green); color:#fff; }
.footer-payment { padding:20px 0; border-color:var(--line); }
.payment-label { color:var(--ink); }
.payment-note,.footer-bottom { color:#7a877f; }
.payment-badges span { color:#48534c; background:#fff; border:1px solid #dde5df; box-shadow:none; }
.footer-bottom { padding:22px 0 28px; }
.footer-legal a:hover { color:var(--green); }
@media (max-width:980px) {
  .main-nav { top:89px; background:#fff; border-top:1px solid var(--line); box-shadow:var(--shadow); }
  .nav-link { color:#4e5a52; border-bottom:1px solid var(--line-soft); }
}
