/* ============================================================
   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; }

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: baseline; gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.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; }
}

/* ============================================================
   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;
}

/* ============================================================
   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;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  background: var(--green-600);
}
.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: var(--green-900);
  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;
}
.page-intro .intro-inner em { font-style: italic; color: var(--gold-500); }

/* ============================================================
   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: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); }
}

/* ============================================================
   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);
}
