/* ============================================================
   AARUSHI ADVENTURES — Shared stylesheet
============================================================ */

:root {
  /* Forest & Gold — final palette */
  --green-900: #0B1F14;
  --green-800: #0F2A1D;
  --green-700: #163827;
  --green-600: #1E4A33;
  --green-500: #2A6042;
  --green-300: #6A8A78;
  --cream-50:  #F7F2E8;
  --cream-100: #F4EFE6;
  --cream-200: #EBE3D2;
  --cream-300: #DCD2BC;
  --gold-500:  #C9A961;
  --gold-400:  #D6B872;
  --gold-300:  #E2C988;
  --ink-900:   #0A1410;
  --ink-700:   #1F2E26;
  --ink-500:   #4F635A;
  --ink-300:   #8FA298;

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1440px;
  --pad-x: clamp(20px, 4vw, 64px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--cream-100);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body { min-height: 100vh; }

img { display: block; max-width: 100%; }

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

button {
  font-family: inherit; font-size: inherit; cursor: pointer;
  border: none; background: none; color: inherit;
}

::selection { background: var(--gold-500); color: var(--green-900); }

/* ============================================================
   Type
============================================================ */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-600);
  font-weight: 500;
}

.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--gold-500); border-radius: 50%;
  margin-right: 10px; vertical-align: middle;
  transform: translateY(-1px);
}

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

.display-xl {
  font-size: clamp(56px, 9.6vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 300;
}
.display-xl em { font-style: italic; font-weight: 300; color: var(--green-600); }

.display-lg {
  font-size: clamp(44px, 6.4vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.display-lg em { font-style: italic; font-weight: 300; }

.display-md {
  font-size: clamp(32px, 4.4vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.display-md em { font-style: italic; }

.display-sm {
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.lede {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-700);
  max-width: 56ch;
}

.body-sm { font-size: 14px; line-height: 1.55; color: var(--ink-700); }

.split-text { overflow: hidden; }
.split-text .line { display: block; overflow: hidden; }

/* ============================================================
   Layout
============================================================ */

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section { padding: clamp(80px, 10vw, 160px) 0; position: relative; }

.section--cream { background: var(--cream-100); color: var(--ink-900); }
.section--cream-deep { background: var(--cream-200); color: var(--ink-900); }
.section--green {
  background: var(--green-800);
  color: var(--cream-100);
}
.section--green .eyebrow { color: var(--gold-400); }

.section--green-deep { background: var(--green-900); color: var(--cream-100); }
.section--green-deep .eyebrow { color: var(--gold-400); }

/* ============================================================
   Header / nav
============================================================ */

.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), color 0.3s;
  mix-blend-mode: normal;
}

.site-header.is-scrolled {
  background: rgba(15, 42, 29, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px var(--pad-x);
  color: var(--cream-100);
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.site-header.is-light { color: var(--cream-100); }
.site-header.is-dark { color: var(--ink-900); }

.brand-mark {
  display: flex; align-items: center;
  gap: 10px;
  margin-left: calc(var(--pad-x) * -0.5);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.brand-mark .brand-logo {
  height: 96px;
  width: auto;
  display: block;
  margin: -26px 0;
  border-radius: 12px;
  transition: height 0.4s var(--ease-out);
}

.brand-mark .logo-scrolled { display: none !important; }
.site-header.is-scrolled .brand-mark .logo-top { display: none !important; }
.site-header.is-scrolled .brand-mark .logo-scrolled { display: block !important; }

.site-header.is-scrolled .brand-logo {
  height: 70px;
  margin: -16px 0;
}

@media (max-width: 720px) {
  .brand-mark .brand-logo { height: 68px; margin: -14px 0; }
}

.brand-mark .brand-name {
  font-size: 22px; font-weight: 400; letter-spacing: 0.01em;
}
.brand-mark .brand-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}

.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.is-active { opacity: 1; }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold-500);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.nav-cta:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-900); }

.nav-toggle { display: none; }

.mobile-menu { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    width: 32px; padding: 6px 0;
  }
  .nav-toggle span {
    display: block; height: 1.5px; background: currentColor; width: 100%;
  }
  .mobile-menu {
    position: fixed; inset: 0;
    background: var(--green-900);
    color: var(--cream-100);
    padding: 100px var(--pad-x) 40px;
    z-index: 99;
    display: none; flex-direction: column; gap: 28px;
  }
  .mobile-menu.is-open { display: flex; }
  .mobile-menu a { font-family: var(--font-display); font-size: 32px; }
  .header-dash-wrap { display: none; }
}

/* ============================================================
   Header Dashboard and Logout Links
============================================================ */
.header-dash-wrap {
  position: relative;
  display: inline-flex;
  margin-left: 20px;
  margin-right: 8px;
  align-items: center;
  gap: 20px;
  z-index: 101;
}
.header-dash-btn {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: opacity 0.2s;
  position: relative;
  padding: 6px 0;
  color: inherit;
  white-space: nowrap;
}
.header-dash-btn:hover, .header-dash-btn.is-active {
  opacity: 1;
}
.header-dash-btn.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--gold-500);
}
.header-dash-btn.logout-link {
  opacity: 0.7;
}
.header-dash-btn.logout-link:hover {
  opacity: 1;
}

/* ============================================================
   Messages inbox (bell icon)
============================================================ */
.notif { position: relative; display: inline-flex; margin-left: 4px; }

.notif-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: 0.85;
  transition: background 0.25s, color 0.25s, border-color 0.25s, opacity 0.2s;
}
.notif-btn:hover { opacity: 1; background: var(--gold-500); border-color: var(--gold-500); color: var(--green-900); }
.notif-btn.has-unread { opacity: 1; }

.notif-badge {
  position: absolute; top: -3px; right: -3px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #d8453a;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600; line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px rgba(15, 42, 29, 0.55);
}

.notif-panel {
  position: absolute; top: calc(100% + 14px); right: 0;
  width: min(360px, calc(100vw - 32px));
  max-height: 70vh;
  display: flex; flex-direction: column;
  background: var(--cream-50);
  color: var(--ink-900);
  border: 1px solid var(--cream-300);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(10, 20, 16, 0.28);
  overflow: hidden;
  z-index: 120;
}

.notif-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--cream-300);
}
.notif-head strong { font-family: var(--font-display); font-size: 17px; font-weight: 400; }
.notif-readall {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 12px;
  color: var(--green-600);
  letter-spacing: 0.02em;
}
.notif-readall:hover { color: var(--green-800); text-decoration: underline; }

.notif-list { overflow-y: auto; }

.notif-empty {
  padding: 28px 18px; text-align: center;
  color: var(--ink-500); font-size: 14px;
}

.notif-item {
  display: flex; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--cream-200);
  cursor: pointer;
}
.notif-item:last-child { border-bottom: none; }
.notif-item.is-unread { background: rgba(201, 169, 97, 0.12); }

.notif-ico {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--cream-200);
  color: var(--green-700);
  font-size: 13px;
}
.notif-item.t-booking_confirmed .notif-ico { background: #e3f1e7; color: #1E4A33; }
.notif-item.t-booking_cancelled .notif-ico { background: #fbe7e4; color: #a3322a; }

.notif-main { min-width: 0; }
.notif-title { font-size: 14px; font-weight: 600; color: var(--ink-900); }
.notif-text { font-size: 13px; line-height: 1.5; color: var(--ink-700); margin-top: 2px; }
.notif-ago { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; color: var(--ink-500); margin-top: 6px; text-transform: uppercase; }

/* ============================================================
   Support chat (chat icon)
============================================================ */
.chatw { position: relative; display: inline-flex; margin-left: 4px; }

.chatw-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: 0.85;
  transition: background 0.25s, color 0.25s, border-color 0.25s, opacity 0.2s;
}
.chatw-btn:hover { opacity: 1; background: var(--gold-500); border-color: var(--gold-500); color: var(--green-900); }
.chatw-btn.has-unread { opacity: 1; }

.chatw-badge {
  position: absolute; top: -3px; right: -3px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #d8453a;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600; line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px rgba(15, 42, 29, 0.55);
}

.chatw-panel {
  position: absolute; top: calc(100% + 14px); right: 0;
  width: min(380px, calc(100vw - 32px));
  height: min(540px, calc(100vh - 140px));
  display: flex; flex-direction: column;
  background: var(--cream-50);
  color: var(--ink-900);
  border: 1px solid var(--cream-300);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(10, 20, 16, 0.28);
  overflow: hidden;
  z-index: 120;
}

.chatw-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px;
  background: var(--green-800);
  color: var(--cream-50);
}
.chatw-head strong { font-family: var(--font-display); font-size: 17px; font-weight: 400; display: block; }
.chatw-sub { font-size: 11px; opacity: 0.7; }
.chatw-close {
  background: none; border: none; color: inherit;
  font-size: 24px; line-height: 1; cursor: pointer; opacity: 0.8;
  padding: 0 2px;
}
.chatw-close:hover { opacity: 1; }

.chatw-msgs {
  flex: 1; overflow-y: auto;
  padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
  background: var(--cream-100);
}

.chatw-empty {
  margin: auto; text-align: center;
  color: var(--ink-500); font-size: 13px; max-width: 240px;
}

.chatw-bubble {
  max-width: 80%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13.5px; line-height: 1.5;
  white-space: pre-wrap; word-wrap: break-word;
}
.chatw-bubble.them { align-self: flex-start; background: #fff; border: 1px solid var(--cream-300); color: var(--ink-900); border-bottom-left-radius: 4px; }
.chatw-bubble.me { align-self: flex-end; background: var(--green-700); color: var(--cream-50); border-bottom-right-radius: 4px; }
.chatw-bubble .t { display: block; font-size: 9px; opacity: 0.6; margin-top: 4px; font-family: var(--font-mono); letter-spacing: 0.04em; }

.chatw-compose {
  display: flex; align-items: flex-end; gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--cream-300);
  background: var(--cream-50);
}
.chatw-compose textarea {
  flex: 1; resize: none;
  min-height: 40px; max-height: 110px;
  padding: 10px 13px;
  border: 1px solid var(--cream-300);
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-body); font-size: 14px; color: var(--ink-900);
  line-height: 1.4;
}
.chatw-compose textarea:focus { outline: none; border-color: var(--green-600); }
.chatw-compose button {
  flex: 0 0 40px; width: 40px; height: 40px;
  border: none; border-radius: 999px;
  background: var(--green-700); color: var(--cream-50);
  font-size: 18px; cursor: pointer;
  transition: background 0.2s;
}
.chatw-compose button:hover { background: var(--gold-500); color: var(--green-900); }

/* ============================================================
   Buttons
============================================================ */

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--gold-500);
  color: var(--green-900);
  border: 1px solid var(--gold-500);
}
.btn-primary:hover { background: var(--gold-400); border-color: var(--gold-400); }

.btn-ghost {
  background: transparent;
  color: var(--cream-100);
  border: 1px solid rgba(244, 239, 230, 0.4);
}
.btn-ghost:hover { background: var(--cream-100); color: var(--green-900); border-color: var(--cream-100); }

.btn-dark {
  background: var(--green-800);
  color: var(--cream-100);
  border: 1px solid var(--green-800);
}
.btn-dark:hover { background: var(--green-700); border-color: var(--green-700); }

/* ============================================================
   Custom cursor
============================================================ */

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.18s var(--ease-out), width 0.25s, height 0.25s, background 0.25s;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.4s var(--ease-out), width 0.3s, height 0.3s, opacity 0.2s;
}
.cursor.is-hover { transform: scale(2.5); }
.cursor-ring.is-hover { opacity: 0; }

@media (hover: none) { .cursor, .cursor-ring { display: none; } }

/* ============================================================
   Footer
============================================================ */

.site-footer {
  background: var(--green-900);
  color: var(--cream-100);
  padding: 100px var(--pad-x) 32px;
  position: relative;
  overflow: hidden;
}

.footer-marquee {
  position: relative;
  margin-bottom: 80px;
  overflow: hidden;
  white-space: nowrap;
  border-block: 1px solid rgba(244, 239, 230, 0.12);
  padding: 28px 0;
}
.footer-marquee .track {
  display: inline-flex;
  gap: 80px;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.02em;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.footer-marquee .track em { font-style: italic; color: var(--gold-400); }
.footer-marquee .star { color: var(--gold-500); margin: 0 24px; vertical-align: middle; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
}
.footer-brand .brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 20px;
}
.footer-brand p { font-size: 14px; line-height: 1.6; opacity: 0.7; max-width: 36ch; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; opacity: 0.8; transition: opacity 0.2s, color 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--gold-400); }

.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  font-size: 12px;
  opacity: 0.6;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.footer-base .powered-link {
  color: var(--gold-400, #e0b15e);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}
.footer-base .powered-link:hover {
  color: var(--cream-100);
  opacity: 1;
}

/* ============================================================
   WhatsApp float
============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px 14px 16px;
  background: var(--green-700);
  color: var(--cream-100);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(11, 31, 20, 0.35);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-out), background 0.3s, opacity 0.3s;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  background: var(--green-600);
}
.whatsapp-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.whatsapp-float .pulse {
  width: 8px; height: 8px; background: var(--gold-500); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(201, 169, 97, 0); }
}

/* ============================================================
   Page intro reveal
============================================================ */

.page-intro {
  position: fixed; inset: 0;
  background: #0D1F15;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.page-intro .intro-inner {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 84px);
  color: var(--cream-100);
  font-weight: 300;
  letter-spacing: -0.02em;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
}
.page-intro .intro-inner em { font-style: italic; color: var(--gold-500); }
.page-intro .intro-name { display: block; }
.page-intro .intro-logo {
  width: clamp(280px, 42vw, 560px);
  height: auto;
  display: block;
}

/* ============================================================
   Page header (inside hero of subpages)
============================================================ */

.page-hero {
  padding: clamp(140px, 18vw, 220px) 0 clamp(60px, 8vw, 120px);
  background: var(--green-800);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero .crumbs {
  display: flex; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 32px;
}
.page-hero .crumbs span:not(:last-child)::after {
  content: "/"; margin-left: 14px; opacity: 0.5;
}

/* ============================================================
   Generic image placeholder (striped)
============================================================ */

.placeholder {
  position: relative;
  background: repeating-linear-gradient(
    135deg,
    var(--cream-200) 0,
    var(--cream-200) 8px,
    var(--cream-300) 8px,
    var(--cream-300) 16px
  );
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.placeholder--dark {
  background: repeating-linear-gradient(
    135deg,
    var(--green-700) 0,
    var(--green-700) 8px,
    var(--green-600) 8px,
    var(--green-600) 16px
  );
  color: var(--cream-100);
}
.placeholder .ph-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--cream-100);
  color: var(--ink-900);
  padding: 6px 10px;
  border-radius: 2px;
}
.placeholder--dark .ph-label { background: var(--green-900); color: var(--gold-400); }

/* ============================================================
   Cards / packages
============================================================ */

.pkg-card {
  position: relative;
  background: var(--cream-50);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease-out);
}
.pkg-card:hover { transform: translateY(-4px); }

.pkg-card .pkg-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.pkg-card .pkg-img img,
.pkg-card .pkg-img .placeholder {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.8s var(--ease-out);
}
.pkg-card:hover .pkg-img img { transform: scale(1.06); }

.pkg-card .pkg-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: var(--cream-50);
  color: var(--green-800);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  z-index: 2;
}

.pkg-card .pkg-body { padding: 24px; }
.pkg-card .pkg-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.pkg-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.05;
}
.pkg-card p { font-size: 14px; color: var(--ink-700); margin-bottom: 18px; line-height: 1.55; }
.pkg-card .pkg-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid var(--cream-300);
  padding-top: 18px;
}
.pkg-card .pkg-price .lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 2px;
}
.pkg-card .pkg-price .val {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  color: var(--green-800);
}
.pkg-card .pkg-go {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-700); font-weight: 500;
}

/* ============================================================
   Stat strip
============================================================ */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--green-700);
  border-bottom: 1px solid var(--green-700);
}
.stat-strip .stat {
  padding: 56px 32px;
  border-right: 1px solid var(--green-700);
  display: flex; flex-direction: column; gap: 12px;
}
.stat-strip .stat:last-child { border-right: none; }
.stat-strip .stat .num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 88px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--gold-400);
  line-height: 1;
}
.stat-strip .stat .lbl {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream-100); opacity: 0.7;
}
@media (max-width: 800px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip .stat { padding: 40px 24px; }
  .stat-strip .stat:nth-child(2) { border-right: none; }
  .stat-strip .stat:nth-child(1), .stat-strip .stat:nth-child(2) { border-bottom: 1px solid var(--green-700); }
}
/* responsive: on phones the two-column stat numbers are too wide and clip —
   stack to a single column with tighter padding */
@media (max-width: 480px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip .stat { padding: 28px 20px; border-right: none; border-bottom: 1px solid var(--green-700); }
  .stat-strip .stat:last-child { border-bottom: none; }
  .stat-strip .stat .num { font-size: clamp(40px, 13vw, 56px); }
}

/* ============================================================
   Testimonial
============================================================ */
.tcard {
  background: var(--cream-50);
  padding: 40px;
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 24px;
  height: 100%;
}
.tcard .stars {
  color: var(--gold-500);
  letter-spacing: 4px;
  font-size: 14px;
}
.tcard blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 300;
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  flex: 1;
}
.tcard blockquote::before { content: "“"; color: var(--gold-500); margin-right: 4px; }
.tcard blockquote::after  { content: "”"; color: var(--gold-500); margin-left: 4px; }
.tcard .who {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--cream-300);
  padding-top: 20px;
}
.tcard .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-700); color: var(--cream-100);
  font-family: var(--font-display); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.tcard .name { font-size: 14px; font-weight: 600; color: var(--ink-900); }
.tcard .where { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); }

/* ============================================================
   Form
============================================================ */
.field {
  display: flex; flex-direction: column; gap: 8px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 500;
}
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 2px;
  color: var(--ink-900);
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--green-700);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   Reveal helpers
============================================================ */
.reveal-mask { overflow: hidden; }
.reveal-up { transform: translateY(40px); opacity: 0; }

/* ============================================================
   Misc
============================================================ */
.divider {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-500);
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px; background: currentColor; opacity: 0.3;
}

.compass {
  width: 14px; height: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative; display: inline-block;
}
.compass::after {
  content: ""; position: absolute; inset: 3px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-500);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(201, 169, 97, 0.25);
}

/* ============================================================
   Site search — header trigger + overlay
============================================================ */
.hsearch {
  display: inline-flex; align-items: center; gap: 9px;
  margin-left: 22px;
  padding: 9px 12px 9px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500; letter-spacing: 0.02em;
  cursor: pointer;
  opacity: 0.85;
  transition: background 0.25s, color 0.25s, border-color 0.25s, opacity 0.2s;
}
.hsearch:hover { opacity: 1; background: var(--gold-500); border-color: var(--gold-500); color: var(--green-900); }
.hsearch-label { line-height: 1; }
.hsearch-kbd { display: inline-flex; gap: 2px; }
.hsearch-kbd kbd {
  font-family: var(--font-mono);
  font-size: 9.5px; line-height: 1;
  padding: 3px 4px;
  border: 1px solid currentColor;
  border-radius: 4px;
  opacity: 0.6;
}
.hsearch:hover .hsearch-kbd kbd { opacity: 0.75; }

@media (max-width: 1100px) {
  .hsearch-label, .hsearch-kbd { display: none; }
  .hsearch { padding: 0; width: 40px; height: 40px; justify-content: center; margin-left: 12px; }
}
@media (max-width: 900px) {
  /* keep search reachable on mobile, sit it left of the menu toggle */
  .hsearch { order: 2; margin-left: auto; margin-right: 12px; }
  .nav-toggle { order: 3; }
}

/* Overlay */
.search-overlay {
  position: fixed; inset: 0;
  z-index: 1000;
  display: flex; justify-content: center;
  padding: clamp(70px, 12vh, 140px) 20px 40px;
  background: rgba(10, 20, 16, 0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.22s var(--ease-out);
}
.search-overlay.is-open { opacity: 1; }
.search-overlay[hidden] { display: none; }

.search-modal {
  width: min(640px, 100%);
  max-height: calc(100vh - 120px);
  display: flex; flex-direction: column;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 18px;
  box-shadow: 0 40px 120px -30px rgba(10, 20, 16, 0.7);
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.24s var(--ease-out);
}
.search-overlay.is-open .search-modal { transform: translateY(0) scale(1); }

.search-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 18px;
  border-bottom: 1px solid var(--cream-300);
}
.search-bar-ico { color: var(--green-700); flex: 0 0 auto; }
.search-input {
  flex: 1; min-width: 0;
  border: 0; background: transparent;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: var(--ink-900);
}
.search-input::placeholder { color: var(--ink-300); }
.search-input:focus { outline: none; }
.search-input::-webkit-search-cancel-button { -webkit-appearance: none; }
.search-esc {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-500);
  padding: 5px 9px;
  border: 1px solid var(--cream-300);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.search-esc:hover { color: var(--green-800); border-color: var(--ink-300); }

.search-results { overflow-y: auto; padding: 8px; }
.search-loading, .search-empty {
  padding: 40px 18px;
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
}
.search-group-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-500);
  padding: 14px 12px 6px;
}

.search-result {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 12px;
  border-radius: 11px;
  color: var(--ink-900);
  transition: background 0.15s;
}
.search-result:hover, .search-result.is-active { background: var(--cream-200); }
.search-result.is-active { box-shadow: inset 0 0 0 1px var(--gold-500); }

.search-badge {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--cream-300);
  color: var(--ink-700);
  min-width: 76px; text-align: center;
}
.search-badge.sb-package { background: #e3f1e7; color: #1E4A33; }
.search-badge.sb-destination { background: rgba(201,169,97,0.2); color: #8a6d1f; }
.search-badge.sb-service { background: #e3eefb; color: #23507e; }
.search-badge.sb-faq { background: #f3e9fb; color: #6a3b8a; }
.search-badge.sb-page { background: var(--cream-300); color: var(--ink-700); }

.search-result-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.search-result-title {
  font-size: 15px; font-weight: 600; color: var(--ink-900);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-result-title mark, .search-result-sub mark {
  background: rgba(201, 169, 97, 0.35); color: inherit; border-radius: 2px; padding: 0 1px;
}
.search-result-sub {
  font-size: 12.5px; color: var(--ink-500);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-result-meta {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 15px; color: var(--green-700);
}
.search-result-go {
  flex: 0 0 auto;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-300);
  opacity: 0; transition: opacity 0.15s;
}
.search-result.is-active .search-result-go, .search-result:hover .search-result-go { opacity: 1; }

.search-foot {
  display: flex; align-items: center; gap: 18px;
  padding: 11px 18px;
  border-top: 1px solid var(--cream-300);
  background: var(--cream-100);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.06em;
  color: var(--ink-500);
}
.search-foot .search-foot-brand { margin-left: auto; opacity: 0.7; letter-spacing: 0.14em; text-transform: uppercase; }
.search-foot kbd {
  font-family: var(--font-mono); font-size: 10px;
  padding: 2px 5px; margin-right: 2px;
  border: 1px solid var(--cream-300); border-radius: 4px; background: #fff;
}
@media (max-width: 560px) {
  .search-foot span:not(.search-foot-brand) { display: none; }
  .search-input { font-size: 18px; }
  .search-badge { min-width: 0; }
}

/* ============================================================
   Shared responsive polish — tablet (iPad) + mobile
   All rules below only apply at <=1024px; desktop is untouched.
============================================================ */

/* --- Header: prevent right-cluster crowding/overflow on tablet & phone --- */
@media (max-width: 1024px) {
  .site-header { padding-top: 16px; padding-bottom: 16px; }
  .site-header.is-scrolled { padding-top: 12px; padding-bottom: 12px; }
}

@media (max-width: 900px) {
  /* The pill CTA crowds the header once the nav collapses; Contact is
     reachable via the hamburger menu, the WhatsApp float and the footer. */
  .nav-cta { display: none; }
  /* Keep the icon buttons compact and evenly spaced beside the toggle */
  .hsearch { order: 2; margin-left: auto; margin-right: 8px; }
  .notif, .chatw { order: 2; margin-left: 6px; }
  .nav-toggle { order: 3; margin-left: 8px; }
  .notif-btn, .chatw-btn, .hsearch { width: 38px; height: 38px; }
}

@media (max-width: 420px) {
  /* Squeeze a touch more on very small phones so nothing wraps/overflows */
  .notif-btn, .chatw-btn, .hsearch { width: 36px; height: 36px; }
  .notif, .chatw { margin-left: 4px; }
  .brand-mark .brand-logo { height: 60px; margin: -12px 0; }
}

/* --- Notification & chat panels: fit small viewports, anchor to screen --- */
@media (max-width: 560px) {
  .notif-panel {
    position: fixed;
    top: 72px; right: 12px; left: 12px;
    width: auto;
    max-height: calc(100vh - 96px);
  }
  .chatw-panel {
    position: fixed;
    top: 72px; right: 12px; left: 12px;
    width: auto;
    height: calc(100vh - 96px);
    max-height: none;
  }
}

/* --- Mobile menu: make tall link lists scrollable, sane tap targets --- */
@media (max-width: 900px) {
  .mobile-menu { overflow-y: auto; gap: 22px; }
  .mobile-menu a { line-height: 1.1; padding: 4px 0; }
}
@media (max-width: 480px) {
  .mobile-menu { padding-top: 92px; gap: 18px; }
  .mobile-menu a { font-size: 26px; }
}

/* --- Buttons: stop wrapping pills from overflowing; full-width stacking --- */
@media (max-width: 480px) {
  .btn { padding: 15px 22px; }
}

/* --- WhatsApp float: smaller footprint on phones so it doesn't dominate --- */
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 16px; right: 16px;
    padding: 12px 16px 12px 14px;
    font-size: 12px;
  }
}

/* --- Footer: tighten oversized vertical rhythm on phones --- */
@media (max-width: 768px) {
  .site-footer { padding-top: 64px; padding-bottom: 28px; }
  .footer-marquee { margin-bottom: 48px; padding: 20px 0; }
  .footer-grid { margin-bottom: 48px; }
  .footer-base { gap: 12px; }
}

/* --- Forms: 16px font already prevents iOS zoom; ensure full-width fields --- */
@media (max-width: 600px) {
  .field input, .field textarea, .field select { width: 100%; }
}

/* --- Touch ergonomics: guarantee >=44px hit areas on touch devices --- */
@media (hover: none) and (pointer: coarse) {
  .nav-links a, .header-dash-btn, .footer-col a,
  .search-result, .notif-item { min-height: 44px; }
  .footer-col ul { gap: 6px; }
  .footer-col a { display: inline-flex; align-items: center; }
}

/* --- Page hero (subpages): trim the very large top padding on phones --- */
@media (max-width: 600px) {
  .page-hero { padding-top: clamp(120px, 30vw, 150px); padding-bottom: clamp(48px, 12vw, 80px); }
}
