/* ============================================================
   COMBAT TRAVELS — Design System
   Primary:   #C4923A  (Warm Gold)
   Secondary: #1F2A44  (Deep Navy)
   BG:        #F5EFE6  (Warm Linen)
   ============================================================ */

:root {
  /* Brand */
  --gold:    #C4923A;
  --gold-h:  #D4A44A;
  --gold-lt: #F5E8C8;
  --navy:    #1F2A44;
  --navy-h:  #2A3A5C;
  --navy-lt: #2E3F60;

  /* Surfaces */
  --linen:   #F5EFE6;
  --cream:   #EDE5D8;
  --parch:   #E5DAC8;
  --white:   #FFFDF9;
  --border:  #D8CEBC;

  /* Text */
  --ink:     #1A1610;
  --body:    #3D3426;
  --muted:   #7A6E5A;
  --hint:    #A8987E;

  /* Shadows */
  --s1: 0 2px 12px rgba(31,42,68,.07);
  --s2: 0 8px 32px rgba(31,42,68,.11);
  --s3: 0 20px 60px rgba(31,42,68,.15);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  background: var(--linen);
  color: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── TYPOGRAPHY ───────────────────────────────── */
.serif { font-family: 'EB Garamond', Georgia, serif; }
.h-serif {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.12;
}
.sec-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.12;
}
.sec-title-wh {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: #fff;
  line-height: 1.12;
}
.card-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

.lead { font-size: 16px; line-height: 1.82; color: var(--body); font-weight: 300; }
.lead-muted { font-size: 15px; line-height: 1.82; color: var(--muted); font-weight: 400; }
.lead-wh { font-size: 15px; line-height: 1.82; color: rgba(255,255,255,.65); font-weight: 300; }
.rule { display: block; width: 44px; height: 2px; background: var(--gold); border: none; margin: 16px 0; }
.rule-c { margin: 16px auto; }
.rule-wh { background: rgba(255,255,255,.35); }

/* ── LAYOUT ───────────────────────────────────── */
.wrap    { max-width: 1140px; margin: 0 auto; padding: 0 52px; }
.wrap-md { max-width: 840px;  margin: 0 auto; padding: 0 52px; }
.sec     { padding: 88px 52px; }
.sec-sm  { padding: 60px 52px; }
.bg-linen { background: var(--linen); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-navy  { background: var(--navy); }
.center   { text-align: center; }

/* texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.022'/%3E%3C/svg%3E");
  opacity: 1;
}
body > * { position: relative; z-index: 1; }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  transition: all .28s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-h); color: #fff; transform: translateY(-2px); box-shadow: var(--s2); }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-h); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,146,58,.35); }

.btn-outline-navy { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.btn-outline-wh { background: transparent; border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-wh:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn-gold-full {
  display: block; width: 100%;
  padding: 14px;
  background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-align: center; border: none;
  transition: background .25s;
}
.btn-gold-full:hover { background: var(--gold-h); color: #fff; }

.btn-navy-full {
  display: block; width: 100%;
  padding: 15px;
  background: var(--navy); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; transition: background .25s;
}
.btn-navy-full:hover { background: var(--navy-h); }

.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1da851; color: #fff; transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 10px; letter-spacing: 2px; }
.btn-full { width: 100%; justify-content: center; }

/* ── SCROLL REVEAL ────────────────────────────── */
.rev { opacity: 0; transform: translateY(22px); transition: opacity .68s ease, transform .68s ease; }
.rev.vis { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* ── ALERTS ───────────────────────────────────── */
.alert { padding: 13px 18px; font-size: 14px; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 8px; border-left: 3px solid; }
.alert-ok  { background: rgba(31,42,68,.07); border-left-color: var(--navy); color: var(--navy); }
.alert-err { background: rgba(180,40,40,.07); border-left-color: #b22; color: #b22; }

/* ── NAV ──────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500; height: 74px;
  display: flex; align-items: center;
  padding: 0 52px;
  transition: all .38s ease;
}
.nav.solid {
  background: rgba(245,239,230,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--s1);
  height: 64px;
}
.nav-inner {
  width: 100%; max-width: 1140px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo { height: 42px; width: auto; object-fit: contain; }
.nav-wordmark {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 22px; font-weight: 400;
  color: #fff; transition: color .38s;
  white-space: nowrap;
}
.nav.solid .nav-wordmark { color: var(--navy); }
.nav-orb { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a, .nav-drop-btn {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: black;
  padding: 8px 14px; transition: .25s;
  background: none; border: none;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.nav.solid .nav-links a,
.nav.solid .nav-drop-btn { color: var(--muted); }
.nav-links a:hover, .nav-drop-btn:hover,
.nav-links a.active { color: var(--gold); }
.nav.solid .nav-links a:hover,
.nav.solid .nav-drop-btn:hover,
.nav.solid .nav-links a.active { color: var(--gold); }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--s3);
  min-width: 220px; z-index: 300;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu { display: block; }
.nav-dd-menu a {
  display: block; padding: 11px 20px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--body); border-bottom: 1px solid var(--border);
  transition: .2s;
}
.nav-dd-menu a:last-child { border-bottom: none; }
.nav-dd-menu a:hover { background: var(--linen); color: var(--gold); padding-left: 26px; }
.nav-dd-sep {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--hint);
  padding: 9px 20px 3px;
  background: var(--cream); border-bottom: 1px solid var(--border);
}

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* hamburger */
.nav-ham {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px;
}
.nav-ham span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; border-radius: 1px; }
.nav.solid .nav-ham span { background: var(--navy); }
.nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--navy); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--navy); }

/* ── MOBILE DRAWER ────────────────────────────── */
.mob-drawer {
  position: fixed; top: 0; right: 0;
  width: min(330px, 90vw);
  height: 100dvh; height: 100vh;
  background: var(--white); z-index: 600;
  transform: translateX(110%);
  transition: transform .38s cubic-bezier(.25,.46,.45,.94);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(31,42,68,.2);
  overflow-y: auto;
}
.mob-drawer.open { transform: translateX(0); }
.mob-bd {
  position: fixed; inset: 0;
  background: rgba(31,42,68,.55);
  z-index: 599; opacity: 0; pointer-events: none; transition: opacity .35s;
}
.mob-bd.show { opacity: 1; pointer-events: all; }
.mob-hd {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0; background: var(--navy);
}
.mob-brand { font-family: 'EB Garamond', Georgia, serif; font-size: 20px; color: #fff; }
.mob-x {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none;
  display: grid; place-items: center;
  font-size: 16px; color: #fff; cursor: pointer; transition: .2s;
}
.mob-x:hover { background: rgba(255,255,255,.22); }
.mob-nav { flex: 1; }
.mob-a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 22px; font-size: 15px; font-weight: 500;
  color: var(--ink); border-bottom: 1px solid var(--border); transition: .2s;
}
.mob-a:hover, .mob-a.active { color: var(--gold); background: var(--linen); }
.mob-tog {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 15px 22px;
  font-size: 15px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--border);
  background: none; border-left: none; border-right: none; border-top: none;
  text-align: left; transition: .2s;
}
.mob-tog:hover, .mob-tog.open { color: var(--gold); background: var(--linen); }
.mob-caret { font-size: 11px; color: var(--hint); transition: transform .3s; }
.mob-tog.open .mob-caret { transform: rotate(180deg); color: var(--gold); }
.mob-sub { display: none; background: var(--linen); border-bottom: 1px solid var(--border); }
.mob-sub.open { display: block; }
.mob-sub a {
  display: block; padding: 11px 22px 11px 34px;
  font-size: 13px; color: var(--body);
  border-bottom: 1px solid var(--border); transition: .2s;
}
.mob-sub a:last-child { border-bottom: none; }
.mob-sub a:hover { color: var(--gold); }
.mob-sub-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--hint);
  padding: 10px 22px 3px 34px; pointer-events: none;
}
.mob-ft {
  padding: 18px 22px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   HERO — responsive full-bleed background section
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  height: 85vh;
  max-height: 900px;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  /* Fixed parallax on desktop — disabled on touch devices below */
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/*
 * iOS Safari bug: background-attachment:fixed causes the image to
 * disappear or jump during scroll on all iPhone/iPad devices.
 * This @supports block detects touch devices and resets to scroll.
 */
@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 42, 68, 0.4) 0%,
    rgba(31, 42, 68, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  max-width: 180px;
  width: auto;
  height: auto;
  /*
   * NOTE: This filter makes a dark/black logo appear white.
   * If your logo is already white or multi-colour, remove this line.
   */
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.hero-logo-img:hover {
  transform: scale(1.05);
}

.hero-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-body {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  margin-bottom: 32px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero .btn {
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ── TRIP CARDS ───────────────────────────────── */
.trips-sec { background: var(--cream); padding: 72px 52px; }
.trips-head { text-align: center; margin-bottom: 46px; }
.trips-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard {
  background: var(--white); border: 1px solid var(--border);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .32s, box-shadow .32s;
}
.tcard:hover { transform: translateY(-7px); box-shadow: var(--s3); }
.tcard-img { height: 210px; overflow: hidden; flex-shrink: 0; position: relative; background: var(--cream); }
.tcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.tcard:hover .tcard-img img { transform: scale(1.06); }
.tcard-img-ph { height: 210px; display: grid; place-items: center; font-size: 52px; }
.tcard-body { padding: 22px 24px; flex: 1; }
.tcard-tag { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 7px; }
.tcard-title { font-family: 'EB Garamond', Georgia, serif; font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }
.tcard-loc { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.tcard-price { font-family: 'EB Garamond', Georgia, serif; font-size: 20px; color: var(--navy); margin-bottom: 18px; }
.tcard-foot { padding: 0 24px 22px; }
.trips-footer { text-align: center; margin-top: 42px; }

/* ── WHAT WE OFFER ────────────────────────────── */
.offer-sec { background: var(--linen); padding: 72px 0; }
.offer-head { text-align: center; padding: 0 52px; margin-bottom: 52px; }
.offer-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); }
.offer-item {
  background: var(--white); padding: 44px 28px; text-align: center;
  transition: background .25s;
}
.offer-item:hover { background: var(--linen); }
.offer-ring {
  width: 80px; height: 80px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  margin: 0 auto; font-size: 28px;
  background: rgba(196,146,58,.06);
  transition: background .25s;
}
.offer-item:hover .offer-ring { background: var(--gold-lt); }
.offer-title { font-family: 'EB Garamond', Georgia, serif; font-size: 20px; font-weight: 400; color: var(--ink); margin: 14px 0 10px; }
.offer-desc { font-size: 13px; line-height: 1.7; color: var(--muted); }

/* ── ABOUT SPLIT ──────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; }
.about-img { overflow: hidden; min-height: 440px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-body {
  background: var(--white); padding: 68px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.check-list { display: flex; flex-direction: column; gap: 11px; margin: 20px 0 28px; }
.check-row { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--body); }
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-size: 10px; flex-shrink: 0;
}

/* ── TESTIMONIALS ─────────────────────────────── */
.testi-sec { position: relative; overflow: hidden; padding: 84px 52px; }
.testi-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=75'); }
.testi-veil { position: absolute; inset: 0; background: rgba(31,42,68,.84); }
.testi-inner { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; }
.testi-head { text-align: center; margin-bottom: 14px; }
.testi-stars-main { display: flex; justify-content: center; gap: 5px; margin-bottom: 44px; }
.testi-star { color: var(--gold); font-size: 22px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tcard-t { text-align: center; }
.testi-ava {
  width: 74px; height: 74px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 14px;
  border: 3px solid rgba(196,146,58,.5);
  background: var(--navy);
  display: grid; place-items: center;
  font-family: 'EB Garamond', serif; font-size: 28px; color: #fff;
}
.testi-ava img { width: 100%; height: 100%; object-fit: cover; }
.testi-stars { display: flex; justify-content: center; gap: 3px; margin-bottom: 9px; }
.testi-s { color: var(--gold); font-size: 15px; }
.testi-name { font-family: 'EB Garamond', serif; font-size: 20px; color: #fff; margin-bottom: 12px; }
.testi-quote { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.7); }

/* ── PKG CARDS (packages page) ───────────────── */
.pkg-sec { background: var(--linen); padding: 72px 52px; }
.pkg-card {
  background: var(--white); border: 1px solid var(--border);
  margin-bottom: 28px; overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.pkg-card:hover { box-shadow: var(--s3); transform: translateY(-4px); }
.pkg-split { display: grid; grid-template-columns: 420px 1fr; }
.pkg-img-col { position: relative; overflow: hidden; min-height: 340px; }
.pkg-img-col img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.pkg-card:hover .pkg-img-col img { transform: scale(1.04); }
.pkg-img-ph { min-height: 340px; background: var(--cream); display: grid; place-items: center; font-size: 72px; }
.pkg-img-tag {
  position: absolute; top: 18px; left: 0;
  background: var(--gold); color: #fff;
  padding: 6px 16px; font-size: 9px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
}
.pkg-body { padding: 40px 46px; display: flex; flex-direction: column; justify-content: space-between; }
.pkg-country { font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.pkg-title { font-family: 'EB Garamond', serif; font-size: clamp(24px,2.8vw,34px); font-weight: 400; color: var(--ink); line-height: 1.1; margin-bottom: 6px; }
.pkg-title em { font-style: italic; }
.pkg-loc { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.pkg-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.pkg-badge { padding: 5px 12px; background: var(--linen); border: 1px solid var(--border); font-size: 11px; color: var(--body); }
.pkg-desc { font-size: 14px; line-height: 1.82; color: var(--body); }
.pkg-foot {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  padding-top: 22px; border-top: 1px solid var(--border);
  margin-top: 22px; flex-wrap: wrap; gap: 16px;
}
.pkg-price-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.pkg-price { font-family: 'EB Garamond', serif; font-size: 38px; font-weight: 400; color: var(--navy); line-height: 1; }
.pkg-price-note { font-size: 11px; color: var(--hint); }
.pkg-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* ── PAGE HERO ────────────────────────────────── */
.ph {
  position: relative;
  height: clamp(260px, 42vh, 480px);
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0 52px 52px;
}
.ph-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ph-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,42,68,.9) 0%, rgba(31,42,68,.25) 70%); }
.ph-inner { position: relative; z-index: 1; }
.ph-tag { font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.42); display: block; margin-bottom: 10px; }
.ph-title { font-family: 'EB Garamond', serif; font-size: clamp(36px, 5.5vw, 72px); font-weight: 400; color: #fff; line-height: 1; }
.ph-title em { font-style: italic; color: var(--gold); }
.ph-sub { font-size: 14px; color: rgba(255,255,255,.48); margin-top: 10px; }

/* ── HOW IT WORKS ─────────────────────────────── */
.how-sec { background: var(--cream); padding: 80px 52px; }
.how-inner { max-width: 1000px; margin: 0 auto; }
.sec-head { text-align: center; margin-bottom: 52px; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.how-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 32px 28px; display: flex; gap: 18px;
  transition: border-color .25s, box-shadow .25s;
}
.how-card:hover { border-color: var(--gold); box-shadow: var(--s2); }
.how-num { font-family: 'EB Garamond', serif; font-size: 52px; font-weight: 400; color: var(--gold); opacity: .3; line-height: 1; flex-shrink: 0; width: 46px; }
.how-title { font-family: 'EB Garamond', serif; font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.how-desc { font-size: 14px; line-height: 1.75; color: var(--body); }
.how-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; }
.how-tag { padding: 4px 11px; background: var(--linen); border: 1px solid var(--border); font-size: 11px; color: var(--muted); }

/* ── FOUNDERS ─────────────────────────────────── */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.fc {
  background: var(--white); border: 1px solid var(--border);
  padding: 38px; position: relative; overflow: hidden;
  transition: box-shadow .3s; border-top: 3px solid var(--gold);
}
.fc:hover { box-shadow: var(--s3); }
.fc-init { position: absolute; right: 20px; bottom: 10px; font-family: 'EB Garamond', serif; font-size: 80px; color: rgba(196,146,58,.07); line-height: 1; user-select: none; }
.fc-role { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.fc-name { font-family: 'EB Garamond', serif; font-size: 28px; color: var(--ink); margin-bottom: 4px; }
.fc-title { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.fc-desc { font-size: 14px; line-height: 1.8; color: var(--body); }

/* ── CONTACT FORM ─────────────────────────────── */
.ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.ct-form-box {
  background: var(--navy); padding: 46px;
  position: relative;
}
.ct-form-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.ct-form-title { font-family: 'EB Garamond', serif; font-size: 28px; color: #fff; margin-bottom: 4px; }
.ct-form-sub { font-size: 13px; color: rgba(255,255,255,.42); margin-bottom: 28px; }
/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; }
.step-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.step-title { font-family: 'EB Garamond', serif; font-size: 18px; color: #fff; }
.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; gap: 10px; }
.step-progress { display: flex; gap: 6px; margin-bottom: 22px; }
.step-dot { width: 28px; height: 3px; background: rgba(255,255,255,.15); transition: background .3s; }
.step-dot.active { background: var(--gold); }
.step-dot.done { background: rgba(196,146,58,.5); }

.fg { margin-bottom: 14px; }
.flbl { display: block; font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 7px; }
.finput, .fsel, .ftxt {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff; font-family: 'Lato', sans-serif;
  font-size: 14px; font-weight: 300;
  outline: none; transition: .25s;
  -webkit-appearance: none; border-radius: 0;
}
.finput:focus, .fsel:focus, .ftxt:focus {
  border-color: rgba(196,146,58,.6);
  background: rgba(255,255,255,.1);
}
.finput::placeholder, .ftxt::placeholder { color: rgba(255,255,255,.2); }
.fsel option { background: var(--navy); }
.ftxt { resize: vertical; min-height: 80px; }
.frow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

/* Contact info sidebar */
.ct-info { display: flex; flex-direction: column; gap: 14px; }
.ct-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 20px 22px; display: flex; align-items: flex-start;
  gap: 15px; transition: border-color .25s, transform .22s;
}
.ct-card:hover { border-color: var(--gold); transform: translateX(4px); }
.ct-icon { width: 42px; height: 42px; border: 1.5px solid var(--border); display: grid; place-items: center; font-size: 17px; flex-shrink: 0; transition: border-color .25s; }
.ct-card:hover .ct-icon { border-color: var(--gold); }
.ct-lbl { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--hint); margin-bottom: 3px; }
.ct-val { font-family: 'EB Garamond', serif; font-size: 18px; color: var(--ink); }
.ct-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.wa-comm {
  background: var(--navy); padding: 20px 22px;
  display: flex; align-items: center; gap: 14px;
  transition: background .25s; text-decoration: none;
}
.wa-comm:hover { background: var(--navy-lt); }
.wa-comm-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.wa-comm-sub { font-size: 12px; color: rgba(255,255,255,.42); }

/* ── POLICY PAGE ──────────────────────────────── */
.policy-block {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 36px 40px; margin-bottom: 20px;
}
.policy-title { font-family: 'EB Garamond', serif; font-size: 26px; color: var(--ink); margin-bottom: 12px; }
.policy-body { font-size: 15px; line-height: 1.85; color: var(--body); }

/* ── NEWSLETTER ───────────────────────────────── */
.nl-sec { background: var(--navy); padding: 68px 52px; text-align: center; }
.nl-inner { max-width: 520px; margin: 0 auto; }
.nl-title { font-family: 'EB Garamond', serif; font-size: clamp(24px,3.5vw,40px); color: #fff; font-weight: 400; margin-bottom: 7px; }
.nl-title em { font-style: italic; color: var(--gold); }
.nl-sub { font-size: 13px; color: rgba(255,255,255,.38); margin-bottom: 26px; }
.nl-form { display: flex; box-shadow: var(--s2); }
.nl-input {
  flex: 1; padding: 15px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14); border-right: none;
  color: #fff; font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: .25s; border-radius: 0;
}
.nl-input:focus { border-color: rgba(196,146,58,.55); background: rgba(255,255,255,.1); }
.nl-input::placeholder { color: rgba(255,255,255,.26); }
.nl-btn {
  padding: 15px 28px; background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: .3s; flex-shrink: 0; border-radius: 0;
}
.nl-btn:hover { background: var(--gold-h); }
.nl-ok { display: none; color: var(--gold); font-size: 14px; margin-top: 14px; }
.nl-note { font-size: 11px; color: rgba(255,255,255,.2); margin-top: 10px; }

/* ── CTA BAND ─────────────────────────────────── */
.cta-band {
  background: var(--navy); padding: 84px 52px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1555448248-2571daf6344b?w=1600&q=60') center/cover no-repeat;
  opacity: .1;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-title { font-family: 'EB Garamond', serif; font-size: clamp(28px,4.5vw,52px); font-weight: 400; color: #fff; margin-bottom: 12px; line-height: 1.1; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.78; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────── */
.footer { background: var(--navy); padding: 68px 52px 28px; border-top: 1px solid rgba(255,255,255,.07); }
.ft-inner { max-width: 1140px; margin: 0 auto; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-brand { font-family: 'EB Garamond', serif; font-size: 22px; color: #fff; margin-bottom: 12px; }
.ft-tagline { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.75; }
.ft-social { font-size: 13px; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: 7px; margin-top: 9px; transition: .2s; }
.ft-social:hover { color: var(--gold); }
.ft-col h5 { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(196,146,58,.75); margin-bottom: 15px; }
.ft-col a { display: block; font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 9px; transition: .2s; }
.ft-col a:hover { color: var(--gold); }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; flex-wrap: wrap; gap: 8px; }
.ft-copy { font-size: 11px; color: rgba(255,255,255,.16); }

/* ── POPUPS ───────────────────────────────────── */
.push-popup {
  position: fixed; bottom: 22px; right: 22px;
  z-index: 800; max-width: 340px;
  width: calc(100vw - 32px);
  background: var(--navy); border-left: 4px solid var(--gold);
  box-shadow: 0 16px 56px rgba(31,42,68,.4); display: none;
}
.push-popup.show { display: block; animation: pushIn .42s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes pushIn { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.push-body { padding: 20px 22px; }
.push-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.push-title { font-family: 'EB Garamond', serif; font-size: 18px; color: #fff; margin-bottom: 7px; line-height: 1.25; }
.push-text { font-size: 13px; color: rgba(255,255,255,.52); line-height: 1.6; margin-bottom: 15px; }
.push-close {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,.08); border: none;
  color: rgba(255,255,255,.45); width: 28px; height: 28px;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 14px; cursor: pointer; transition: .2s;
}
.push-close:hover { background: rgba(255,255,255,.18); color: #fff; }
.push-btns { display: flex; gap: 8px; }

.modal-ov {
  position: fixed; inset: 0;
  background: rgba(31,42,68,.72);
  z-index: 900; display: none;
  align-items: center; justify-content: center; padding: 18px;
}
.modal-ov.show { display: flex; }
.modal-box {
  background: var(--white); max-width: 480px; width: 100%;
  position: relative; overflow: hidden;
  animation: modalIn .38s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes modalIn { from { transform: scale(.93); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-img { height: 210px; overflow: hidden; position: relative; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-img-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,42,68,.75), transparent); }
.modal-badge { position: absolute; bottom: 14px; left: 18px; background: var(--gold); color: #fff; padding: 5px 13px; font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; }
.modal-body { padding: 32px; }
.modal-ey { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.modal-title { font-family: 'EB Garamond', serif; font-size: 24px; color: var(--ink); margin-bottom: 10px; line-height: 1.2; }
.modal-text { font-size: 14px; line-height: 1.75; color: var(--body); margin-bottom: 22px; }
.modal-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.82); border: none;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 15px; cursor: pointer; z-index: 2; color: var(--body); transition: .2s;
}
.modal-close:hover { background: var(--navy); color: #fff; }
.modal-dismiss { display: block; text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; cursor: pointer; text-decoration: underline; }

/* ══════════════════════════════
   ADMIN PANEL
══════════════════════════════ */
body.adm { background: #F0EBE1; color: var(--ink); font-family: 'Lato', sans-serif; }
.a-wrap { display: flex; min-height: 100vh; }

/* Sidebar */
.a-side {
  width: 230px; flex-shrink: 0;
  background: #141E33;
  border-right: 1px solid rgba(196,146,58,.10);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0;
  height: 100vh; z-index: 100;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.a-main { margin-left: 230px; flex: 1; display: flex; flex-direction: column; min-width: 0; }

/* Sidebar brand */
.a-sb-brand {
  padding: 20px 18px;
  border-bottom: 1px solid rgba(196,146,58,.10);
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
}
.a-sb-orb {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #D4A44A);
  display: grid; place-items: center;
  font-size: 16px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(196,146,58,.35);
}
.a-sb-name { font-family: 'EB Garamond', serif; font-size: 16px; color: #fff; line-height: 1.2; }
.a-sb-sub  { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-top: 1px; }

/* Sidebar nav */
.a-nav { padding: 10px 0; flex: 1; }
.a-nav-section {
  padding: 16px 18px 5px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.2);
}
.a-item {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 18px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.45);
  cursor: pointer; transition: all .18s;
  border-left: 3px solid transparent;
  text-decoration: none; position: relative;
}
.a-item:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.05); border-left-color: rgba(196,146,58,.3); }
.a-item.active { color: var(--gold); background: rgba(196,146,58,.08); border-left-color: var(--gold); font-weight: 600; }
.a-item-ico { font-size: 16px; width: 22px; text-align: center; flex-shrink: 0; opacity: .75; }
.a-item.active .a-item-ico { opacity: 1; }
.a-badge-new {
  display: inline-flex; align-items: center;
  padding: 2px 8px; font-size: 10px; font-weight: 700;
  background: #b82020; color: #fff;
  border-radius: 10px; margin-left: auto;
}

/* Sidebar footer */
.a-sb-foot {
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; color: rgba(255,255,255,.28);
}

/* Topbar */
.a-topbar {
  height: 60px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 1px 0 var(--border), 0 2px 8px rgba(31,42,68,.04);
}
.a-pg { padding: 24px; flex: 1; }
.a-topbar-l, .a-topbar-left  { display: flex; align-items: center; gap: 12px; min-width: 0; }
.a-topbar-r, .a-topbar-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.a-topbar-title { font-family: 'EB Garamond', serif; font-size: 21px; color: var(--ink); }
.a-menu-btn { background: none; border: none; color: var(--muted); font-size: 22px; cursor: pointer; padding: 6px; display: none; line-height: 1; border-radius: 6px; transition: background .15s; }
.a-menu-btn:hover { background: var(--linen); }
.a-view {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 14px;
  background: rgba(31,42,68,.05);
  border: 1px solid rgba(31,42,68,.12);
  border-radius: 7px;
  font-size: 12px; color: var(--navy);
  text-decoration: none; transition: all .18s;
}
.a-view:hover { background: rgba(31,42,68,.10); }
.a-logout {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 14px;
  background: rgba(160,30,30,.05);
  border: 1px solid rgba(160,30,30,.14);
  border-radius: 7px;
  font-size: 12px; color: #a02020;
  text-decoration: none; transition: all .18s;
}
.a-logout:hover { background: rgba(160,30,30,.12); }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; margin-bottom: 18px; }
.stat-box { background: var(--white); border: 1px solid var(--border); padding: 20px 22px; position: relative; overflow: hidden; }
.stat-box::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); }
.stat-icon { font-size: 22px; margin-bottom: 8px; }
.stat-val { font-family: 'EB Garamond', serif; font-size: 32px; color: var(--navy); line-height: 1; margin-bottom: 2px; }
.stat-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; }
.a-panel { background: var(--white); border: 1px solid var(--border); margin-bottom: 16px; }
.a-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 13px 17px; border-bottom: 1px solid var(--border); background: var(--linen); }
.a-panel-title { font-family: 'EB Garamond', serif; font-size: 17px; color: var(--ink); }
.a-panel-body { padding: 17px; }
.a-panel-bare { padding: 0; }
.a-tbl { width: 100%; border-collapse: collapse; }
.a-tbl th { padding: 9px 14px; text-align: left; font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); background: var(--linen); }
.a-tbl td { padding: 12px 14px; font-size: 13px; color: var(--body); border-bottom: 1px solid var(--border); vertical-align: middle; }
.a-tbl tr:last-child td { border-bottom: none; }
.a-tbl tr:hover td { background: rgba(196,146,58,.03); }
.bdg { display: inline-flex; align-items: center; padding: 3px 9px; font-size: 11px; font-weight: 600; }
.bdg-green { background: rgba(31,42,68,.08); border: 1px solid rgba(31,42,68,.18); color: var(--navy); }
.bdg-gray { background: rgba(100,100,90,.06); border: 1px solid rgba(100,100,90,.14); color: var(--muted); }
.bdg-orange { background: rgba(196,146,58,.08); border: 1px solid rgba(196,146,58,.2); color: var(--gold); }
.ab { display: inline-flex; align-items: center; gap: 5px; padding: 7px 13px; font-size: 11px; font-weight: 600; border: none; cursor: pointer; transition: .2s; text-decoration: none; font-family: 'Lato', sans-serif; white-space: nowrap; }
.ab-primary { background: var(--navy); color: #fff; }
.ab-primary:hover { background: var(--navy-h); color: #fff; }
.ab-sec { background: rgba(31,42,68,.06); border: 1px solid rgba(31,42,68,.15); color: var(--navy); }
.ab-sec:hover { background: rgba(31,42,68,.12); }
.ab-danger { background: rgba(160,30,30,.07); border: 1px solid rgba(160,30,30,.18); color: #a02020; }
.ab-danger:hover { background: rgba(160,30,30,.15); }
.ab-success { background: rgba(31,42,68,.07); border: 1px solid rgba(31,42,68,.18); color: var(--navy); }
.ab-sm { padding: 5px 10px; font-size: 10px; }
.fg { margin-bottom: 13px; } .fg:last-child { margin-bottom: 0; }
.a-lbl { display: block; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.a-input, .a-in, .a-sel, .a-txt { width: 100%; padding: 10px 12px; background: var(--linen); border: 1px solid var(--border); color: var(--ink); font-family: 'Lato', sans-serif; font-size: 13px; outline: none; transition: .2s; -webkit-appearance: none; border-radius: 0; }
.a-input:focus, .a-in:focus, .a-sel:focus, .a-txt:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(196,146,58,.09); }
.a-input::placeholder, .a-in::placeholder, .a-txt::placeholder { color: var(--hint); }
.a-sel option { background: var(--white); }
.a-txt { resize: vertical; min-height: 80px; }
.a-hint { font-size: 11px; color: var(--hint); margin-top: 4px; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.g3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 13px; }
.tog-row { display: flex; align-items: center; gap: 10px; }
.tog { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.tog input { opacity: 0; width: 0; height: 0; }
.tog-sl { position: absolute; inset: 0; background: var(--border); cursor: pointer; transition: .3s; border: 1px solid rgba(31,42,68,.15); border-radius: 11px; }
.tog input:checked + .tog-sl { background: var(--gold); border-color: var(--gold); }
.tog-sl::before { content: ''; position: absolute; left: 3px; bottom: 3px; width: 14px; height: 14px; background: #fff; border-radius: 50%; transition: .3s; }
.tog input:checked + .tog-sl::before { transform: translateX(18px); }
.tog-lbl { font-size: 13px; color: var(--body); }
.ct-form-section { border-bottom: 1px solid rgba(196,146,58,.15); padding-bottom: 20px; margin-bottom: 20px; }
.ct-form-section-title { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.img-box { border: 2px dashed var(--border); padding: 17px; text-align: center; cursor: pointer; transition: .2s; background: var(--linen); }
.img-box:hover { border-color: var(--gold); background: rgba(196,146,58,.03); }
.img-prev { width: 100%; max-height: 140px; object-fit: cover; margin-top: 10px; }
.a-flash { padding: 11px 15px; font-size: 13px; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 7px; border-left: 3px solid; }
.a-flash-ok { background: rgba(31,42,68,.07); border-left-color: var(--navy); color: var(--navy); }
.a-flash-err { background: rgba(160,30,30,.07); border-left-color: #a02020; color: #a02020; }
.pkg-row { background: var(--white); border: 1px solid var(--border); padding: 14px; margin-bottom: 11px; display: flex; align-items: center; gap: 13px; transition: .25s; }
.pkg-row:hover { border-color: var(--gold); box-shadow: var(--s1); }
.pkg-row-thumb { width: 68px; height: 48px; flex-shrink: 0; background: var(--linen); display: grid; place-items: center; font-size: 22px; border: 1px solid var(--border); overflow: hidden; }
.pkg-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pkg-row-info { flex: 1; min-width: 0; }
.pkg-row-title { font-weight: 600; color: var(--ink); font-size: 14px; margin-bottom: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pkg-row-loc { font-size: 12px; color: var(--muted); }
.pkg-row-price { font-size: 13px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.pkg-row-actions { display: flex; gap: 6px; flex-shrink: 0; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — COMPREHENSIVE MOBILE FIRST
   Breakpoints: 1060 · 860 · 768 · 720 · 540 · 380
═══════════════════════════════════════════════ */

/* ── Tablet landscape (≤1060px) ─────────────── */
@media (max-width: 1060px) {
  .wrap, .wrap-md { padding: 0 28px; }
  .sec, .sec-sm { padding-left: 28px; padding-right: 28px; }
  .intro-sec, .trips-sec, .offer-sec, .testi-sec, .how-sec,
  .nl-sec, .cta-band, .footer, .pkg-sec { padding-left: 28px; padding-right: 28px; }

  /* Public — grids */
  .trips-grid { grid-template-columns: 1fr 1fr; }
  .offer-row  { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-img  { min-height: 300px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid .tcard-t:last-child { display: none; }
  .how-grid   { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr 1fr; }
  .ft-grid    { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ct-grid    { grid-template-columns: 1fr; gap: 32px; }
  .pkg-split  { grid-template-columns: 1fr; }
  .pkg-img-col { min-height: 260px; }
  .ph { padding: 0 28px 44px; }

  /* Admin — sidebar collapses off-canvas */
  .a-side { transform: translateX(-100%); box-shadow: none; }
  .a-side.open { transform: translateX(0); box-shadow: 4px 0 32px rgba(0,0,0,.28); }
  .a-main { margin-left: 0; }
  .a-menu-btn { display: flex; }
  .a-overlay { display: block; }

  /* Admin — grids */
  .stat-row { grid-template-columns: 1fr 1fr; }
  .g2 { grid-template-columns: 1fr 1fr; }
  .g3 { grid-template-columns: 1fr 1fr; }
}

/* ── Tablet portrait (≤860px) ───────────────── */
@media (max-width: 860px) {
  /* Admin table: enable horizontal scroll */
  .a-panel-bare, .a-tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .a-tbl { min-width: 560px; }

  /* Admin inquiry detail: stack columns */
  .inq-detail-grid { grid-template-columns: 1fr !important; }

  /* Admin quick-action grid → single col */
  .qa-grid { grid-template-columns: 1fr !important; }

  /* Admin package row: wrap actions */
  .pkg-row { flex-wrap: wrap; gap: 10px; }
  .pkg-row-actions { width: 100%; justify-content: flex-end; }

  /* Public */
  .how-grid   { grid-template-columns: 1fr; }
  .ft-grid    { grid-template-columns: 1fr 1fr; }
}

/* ── Hero logo responsive sizing ────────────── */
@media (max-width: 768px) {
  .hero-logo-img {
    max-width: 140px;
  }
}

/* ── Mobile landscape / small tablet (≤720px) ─ */
@media (max-width: 720px) {
  /* ── Nav ── */
  .nav { padding: 0 16px; height: 58px; }
  .nav.solid { height: 54px; }
  .nav-links { display: none; }
  .nav-actions .btn-wa { display: none; }
  .nav-ham { display: flex; }

  /* ── Hero ── */
  .hero {
    height: 70vh;
    min-height: 500px;
    /* Disable fixed parallax on mobile — causes jumpiness on Android too */
    background-attachment: scroll;
  }
  .hero-content {
    /* Top padding clears the fixed nav bar (58px) with extra breathing room */
    padding: 80px 20px 40px;
  }
  .hero-title { font-size: clamp(28px, 7vw, 44px) !important; }
  .hero-body  { font-size: 16px !important; }

  /* ── Sections ── */
  .intro-sec, .trips-sec, .offer-sec, .testi-sec, .pkg-sec,
  .nl-sec, .cta-band, .footer, .how-sec { padding: 52px 16px; }
  .sec    { padding: 52px 16px; }
  .sec-sm { padding: 38px 16px; }
  .ph     { padding: 0 16px 34px; }
  .wrap, .wrap-md { padding: 0 16px; }

  /* ── Grids ── */
  .trips-grid, .testi-grid, .founders-grid { grid-template-columns: 1fr; }
  .testi-grid .tcard-t:last-child { display: block; }
  .offer-row  { grid-template-columns: 1fr 1fr; }
  .ft-grid    { grid-template-columns: 1fr; }
  .g2, .g3   { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .ft-bottom  { flex-direction: column; text-align: center; gap: 8px; }
  .ft-col a, .ft-col h5 { text-align: left; }

  /* ── Newsletter ── */
  .nl-form  { flex-direction: column; }
  .nl-input { border-right: 1px solid rgba(255,255,255,.14); border-bottom: none; border-radius: 0; }
  .nl-btn   { width: 100%; border-radius: 0; }

  /* ── CTA ── */
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; }

  /* ── Contact form ── */
  .ct-form-box { padding: 24px 16px; }
  .frow2 { grid-template-columns: 1fr; }

  /* ── About ── */
  .about-body { padding: 36px 18px; }

  /* ── Packages public ── */
  .pkg-body    { padding: 26px 18px; }
  .pkg-actions { flex-direction: column; gap: 10px; }
  .pkg-actions .btn { width: 100%; justify-content: center; }

  /* ── How it works ── */
  .step-nav { flex-direction: column; gap: 8px; }
  .step-nav .btn { width: 100%; justify-content: center; }

  /* ── Popups / modals ── */
  .push-popup { left: 10px; right: 10px; max-width: 100%; bottom: 10px; }
  .modal-ov   { padding: 10px; align-items: flex-end; }
  .modal-box  { max-width: 100%; border-radius: 12px 12px 0 0; }
  .modal-body { padding: 22px 18px; }
  .modal-img  { height: 170px; }
  .modal-btns { flex-direction: column; gap: 8px; }
  .modal-btns .btn { width: 100%; justify-content: center; }

  /* ── Admin panel ── */
  .a-pg { padding: 12px 10px; }
  .a-topbar { padding: 0 12px; height: 52px; }
  .a-topbar-title { font-size: 16px; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-box { padding: 15px 14px; }
  .stat-val { font-size: 26px; }

  /* Admin: hide non-essential table columns via data-hide */
  .a-tbl th.hide-sm, .a-tbl td.hide-sm { display: none; }

  /* Admin login */
  .login-box { padding: 32px 20px; margin: 16px; border-radius: 12px; }

  /* Admin settings / package form grid */
  .g2, .g3 { grid-template-columns: 1fr; gap: 10px; }

  /* Pkg row on admin */
  .pkg-row-thumb { width: 54px; height: 40px; }
}

/* ── Mobile portrait (≤540px) ──────────────── */
@media (max-width: 540px) {
  /* Nav: tighter */
  .nav { padding: 0 12px; height: 54px; }
  .nav-actions { display: none; }
  .nav-ham { display: flex; }

  /* Hero — use auto height so short phones don't clip content */
  .hero {
    height: auto;
    min-height: 420px;
    /* Add internal padding instead of relying on vh height */
    padding-top: 100px;
    padding-bottom: 60px;
    background-attachment: scroll;
  }
  /* Remove content padding override — hero padding handles it now */
  .hero-content {
    padding: 0 16px;
  }
  .hero-title br {
    display: none;
  }
  .hero-logo-img {
    max-width: 120px;
  }

  /* Sections */
  .intro-sec, .trips-sec, .offer-sec, .testi-sec, .pkg-sec,
  .nl-sec, .cta-band, .footer, .how-sec, .sec, .sec-sm { padding-left: 14px; padding-right: 14px; }

  /* Offer row: single col */
  .offer-row { grid-template-columns: 1fr; }

  /* Intro title */
  .intro-title { font-size: clamp(26px, 8vw, 38px); }
  .sec-title, .sec-title-wh { font-size: clamp(24px, 7vw, 38px); }

  /* Card / tcard */
  .tcard-t { padding: 24px 18px; }
  .trip-card-body { padding: 20px 16px; }

  /* Footer links */
  .ft-grid { gap: 28px; }

  /* Admin */
  .stat-row { grid-template-columns: 1fr; }
  .a-pg { padding: 10px 8px; }
  .a-panel-head { flex-wrap: wrap; gap: 8px; padding: 10px 12px; }
  .a-panel-body { padding: 12px; }

  /* Admin inquiry detail action sidebar */
  .inq-detail-grid > div:last-child { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .inq-detail-grid > div:last-child .a-panel { flex: 1; min-width: 140px; margin-bottom: 0; }

  /* Admin package row compact */
  .pkg-row-info .pkg-row-title { font-size: 13px; }
  .pkg-row-price { display: none; }

  /* Login */
  .login-box { padding: 28px 16px; margin: 10px; }

  /* Topbar */
  .a-view { display: none; }
}

/* ── Small phones (≤380px) ──────────────────── */
@media (max-width: 380px) {
  .offer-row { grid-template-columns: 1fr; }
  .intro-title { font-size: 24px; }
  .sec-title, .sec-title-wh { font-size: 22px; }
  .hero {
    min-height: 380px;
    padding-top: 90px;
    padding-bottom: 50px;
  }
  .hero-title  { font-size: 22px !important; }
  .hero-body   { font-size: 14px !important; }
  .btn { padding: 12px 20px; font-size: 10px; letter-spacing: 2px; }
  .nav { height: 50px; }

  /* Admin */
  .stat-box { padding: 12px 10px; }
  .stat-val  { font-size: 22px; }
  .ab { padding: 5px 9px; font-size: 10px; }
  .a-pg { padding: 8px 6px; }
}

/* ── Admin overlay (mobile sidebar backdrop) ─ */
.a-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 99;
  transition: opacity .3s;
}
@media (max-width: 1060px) {
  .a-overlay.show { display: block; }
}

/* ── Safe area support (iPhone notch / home bar) ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mob-drawer { padding-bottom: env(safe-area-inset-bottom); }
  .footer     { padding-bottom: calc(52px + env(safe-area-inset-bottom)); }
  .nav        { padding-top: env(safe-area-inset-top); }
  /* Hero: add safe area to top padding so content clears notch */
  .hero       { padding-top: max(100px, calc(80px + env(safe-area-inset-top))); }
}

/* ── Touch-friendly tap targets ─────────────── */
@media (max-width: 720px) {
  .mob-a, .mob-tog { min-height: 48px; }
  .a-item           { min-height: 44px; }
  .ab, .btn         { min-height: 40px; }
  .a-input, .a-in, .a-sel, .a-txt { padding: 12px 14px; font-size: 16px; }
  input[type="text"], input[type="email"], input[type="password"],
  input[type="tel"], input[type="number"], select, textarea { font-size: 16px !important; }
}

/* ── Print / accessibility ──────────────────── */
@media print {
  .nav, .mob-drawer, .push-popup, .modal-ov, .a-side, .a-topbar { display: none !important; }
  .a-main { margin-left: 0 !important; }
  body { background: #fff; color: #000; }
}