/* ==================================================
   SAMYATI THE WORLD — BALI LANDING PAGE v2
   Black + Yellow backgrounds · Golden text · Compact
================================================== */
:root {
  --black:  #0B0B0B;
  --black2: #050505;
  --offwhite:  #F8F4EE;   /* soft off-white — main background */
  --offwhite2: #FBF8F2;   /* slightly lighter off-white for cards/strips */
  --yellow: #FFD60A;   /* bright yellow — form background + price */
  --gold:   #C79A2E;   /* golden text & icons (darkened for contrast on light bg) */
  --gold-hero: #E4B84A; /* brighter gold for use over dark hero photo */
  --ink:    #1A1712;   /* near-black body text on light bg */
  --muted:  #6A6155;   /* muted text on light bg */
  --white:  #FFFFFF;
  --wa:     #25D366;
  --wa-d:   #1DA851;

  --fd: "Fraunces", Georgia, serif;
  --fb: "Instrument Sans", -apple-system, sans-serif;
  --r: 16px;
  --topbar-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
body {
  font-family: var(--fb);
  background: var(--offwhite);
  color: var(--ink);
  line-height: 1.55;
  padding-top: var(--topbar-h);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 18px; }
.wrap--narrow { max-width: 620px; }

.sec-title {
  font-family: var(--fd);
  font-weight: 600;
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 26px;
  letter-spacing: -.01em;
}
.sec-title--dark { color: var(--black); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s, filter .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn:hover { filter: brightness(1.06); }
.btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
.btn--gold { background: var(--yellow); color: var(--black); box-shadow: 0 6px 18px rgba(255,214,10,.28); }
.btn--wa { background: var(--wa); color: var(--white); box-shadow: 0 6px 18px rgba(37,211,102,.25); }
.btn--dark { background: var(--black); color: var(--yellow); }
.btn--sm { padding: 10px 16px; font-size: .84rem; }
.btn--full { width: 100%; }
.icon { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

/* ---------- Sticky header: logo + 2 buttons ---------- */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--topbar-h);
  z-index: 100;
  background: var(--offwhite2);
  border-bottom: 1px solid rgba(199,154,46,.3);
  box-shadow: 0 2px 12px rgba(11,11,11,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}
.topbar__logo { height: 46px; width: auto; }
.topbar__actions { display: flex; gap: 8px; }
@media (max-width: 400px) { .hide-xs { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--topbar-h));
  display: flex;
  align-items: flex-end;
  background: var(--black);
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
/* Balanced scrim: strong at bottom for text, light veil at top so the
   bright sky doesn't clash with the header. Temple stays visible in the middle. */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(5,5,5,.94) 0%,
      rgba(5,5,5,.80) 30%,
      rgba(5,5,5,.34) 56%,
      rgba(5,5,5,.14) 78%,
      rgba(5,5,5,.22) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 34px;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.hero__title {
  font-family: var(--fd);
  font-weight: 600;
  font-size: clamp(2rem, 7.5vw, 3.3rem);
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 8px;
}
.hero__title span { color: var(--gold-hero); }
.hero__tag {
  color: var(--gold-hero);
  font-size: clamp(.95rem, 3.4vw, 1.15rem);
  margin-bottom: 16px;
}
.hero__pricebar {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 18px;
  margin-bottom: 18px;
}
.hero__price { display: flex; align-items: baseline; gap: 8px; }
.hero__price span { font-size: .8rem; color: rgba(255,255,255,.85); }
.hero__price strong {
  font-family: var(--fd);
  font-size: clamp(2rem, 7vw, 2.8rem);
  color: var(--yellow);
}
.hero__pill {
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--black);
  background: var(--gold-hero);
  border-radius: 999px;
  padding: 7px 14px;
  text-shadow: none;
}

/* ---------- Inclusion icon chips ---------- */
.inc { display: flex; flex-wrap: wrap; gap: 8px; }
.inc li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 600;
  color: var(--gold-hero);
  background: rgba(11,11,11,.72);
  border: 1px solid rgba(212,175,55,.55);
  border-radius: 999px;
  padding: 8px 13px;
  text-shadow: none;
}
.inc__icon { width: 17px; height: 17px; color: var(--gold-hero); flex: none; }
.inc--hero { margin-bottom: 22px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--offwhite2);
  border-top: 1px solid rgba(199,154,46,.22);
  border-bottom: 1px solid rgba(199,154,46,.22);
  padding: 24px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 12px;
}
.trust__item { display: flex; gap: 11px; align-items: flex-start; }
.trust__icon { width: 24px; height: 24px; color: var(--gold); flex: none; margin-top: 1px; fill: currentColor; }
.trust__item strong { display: block; color: var(--ink); font-size: .9rem; line-height: 1.3; }
.trust__item span { display: block; color: var(--muted); font-size: .77rem; }

/* ---------- Packages ---------- */
.packages { padding: 48px 0 54px; }
.pkg-grid { display: grid; gap: 18px; }
.pkg {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(212,175,55,.3);
}
.pkg__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.pkg__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(5,5,5,.96) 0%,
    rgba(5,5,5,.82) 42%,
    rgba(5,5,5,.28) 78%,
    rgba(5,5,5,.15) 100%);
}
.pkg__body { position: relative; z-index: 1; padding: 20px; width: 100%; }
.pkg__dur {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}
.pkg__title {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 12px;
}
.inc--card { margin-bottom: 14px; }
.inc--card li { font-size: .74rem; padding: 6px 11px; }
.pkg__price {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--yellow);
  margin-bottom: 14px;
  line-height: 1.1;
}
.pkg__price span {
  display: block;
  font-family: var(--fb);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 2px;
}
.pkg__price em { font-style: normal; font-family: var(--fb); font-size: .8rem; color: rgba(255,255,255,.75); }
.pkg__ctas { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- Reviews ---------- */
.reviews { padding: 10px 0 54px; }
.rev-grid { display: grid; gap: 14px; }
.rev {
  background: var(--white);
  border: 1px solid rgba(199,154,46,.28);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: 0 6px 20px rgba(11,11,11,.05);
}
.rev__stars { display: flex; gap: 3px; margin-bottom: 10px; }
.rev__stars svg { width: 16px; height: 16px; fill: #F0B429; }
.rev blockquote { font-size: .92rem; color: var(--ink); margin-bottom: 10px; }
.rev figcaption { font-size: .8rem; font-weight: 600; color: var(--gold); }

/* ---------- Form (yellow section, black text) ---------- */
.formsec { background: var(--yellow); padding: 48px 0 54px; color: var(--black); }
.formsec__sub { text-align: center; font-size: .92rem; color: rgba(11,11,11,.75); margin: -14px 0 24px; }
.lead-form {
  background: var(--white);
  border-radius: var(--r);
  padding: 24px 20px;
  box-shadow: 0 14px 40px rgba(11,11,11,.18);
}
.ff { margin-bottom: 14px; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ff label { display: block; font-size: .8rem; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.ff label small { font-weight: 400; color: #777; }
.ff input, .ff select, .ff textarea {
  width: 100%;
  font-family: var(--fb);
  font-size: 16px;               /* prevents iOS zoom */
  padding: 12px 13px;
  border: 1.5px solid #DDD;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
}
.ff input:focus, .ff select:focus, .ff textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.25);
}
.ff input.is-invalid, .ff select.is-invalid { border-color: #B33A2B; }
.ff__err { display: block; font-size: .74rem; color: #B33A2B; margin-top: 3px; min-height: 1em; }
.lead-form__ok { margin-top: 12px; font-size: .9rem; font-weight: 600; color: var(--black); text-align: center; }

/* ---------- FAQ ---------- */
.faqsec { padding: 6px 0 52px; }
.faq__item {
  background: var(--white);
  border: 1px solid rgba(199,154,46,.28);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(11,11,11,.04);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
  padding: 15px 44px 15px 16px;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--fd);
  font-size: 1.3rem;
  color: var(--gold);
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p { padding: 0 16px 15px; font-size: .88rem; color: var(--muted); }
.faq__item summary:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }

/* ---------- Footer ---------- */
.footer { background: var(--offwhite2); padding: 34px 0; border-top: 1px solid rgba(199,154,46,.3); }
.footer__inner { text-align: center; }
.footer__logo { height: 66px; width: auto; margin: 0 auto 8px; }
.footer__tag {
  font-size: .74rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer__contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; font-size: .9rem; color: var(--ink); }
.footer__contact a { color: var(--ink); }
.footer__contact a:hover { color: var(--gold); }

/* ==================================================
   TABLET / DESKTOP
================================================== */
@media (min-width: 720px) {
  .topbar { padding: 0 28px; }
  .topbar__logo { height: 52px; }

  .hero__content { padding-bottom: 56px; }

  .trust__grid { grid-template-columns: repeat(4, 1fr); }

  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
  .pkg { min-height: 470px; }
  .pkg__body { padding: 22px; }

  .rev-grid { grid-template-columns: repeat(3, 1fr); }

  .lead-form { padding: 32px; }
}
