/* Hotels In Sariska — base styles (mobile-first)
   Colour + type tokens live here. Change the palette in :root only. */

:root {
  --forest: #133a25;
  --forest-dark: #0d2a1b;
  --green: #2f6b45;
  --gold: #b3822f;
  --gold-light: #d9a94a;
  --cream: #f7f4ec;
  --cream-dark: #ece6d8;
  --ink: #22271f;
  --muted: #5c6459;
  --line: #ded7c6;
  --white: #ffffff;
  --max: 1200px;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--forest); line-height: 1.18; margin: 0 0 .6em; font-weight: 700; }
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 18px; }
.section { padding: 48px 0; }
.section-alt { background: var(--cream); }
.section-head { max-width: 720px; margin-bottom: 28px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 600; color: var(--gold); margin-bottom: .4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 22px; border: 1px solid transparent;
  font-weight: 600; font-size: .95rem; border-radius: 3px; cursor: pointer;
  text-align: center; transition: background-color .18s ease, color .18s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--forest-dark); color: var(--white); }
.btn-gold { background: var(--gold); color: #1c1405; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--line); }
.btn-outline:hover { background: var(--cream); }
.btn-light { background: var(--cream); color: var(--forest); }
.btn-block { display: block; width: 100%; padding: 15px 22px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60; background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 66px; }
.logo img { width: auto; height: 44px; }
.main-nav { display: none; }
.main-nav a { color: var(--forest); font-weight: 500; padding: 8px 0; }
.main-nav a.nav-cta { color: var(--cream); padding: 11px 18px; }
.main-nav a.nav-cta:hover { color: var(--white); }
.nav-toggle {
  width: 42px; height: 38px; border: 1px solid var(--line); background: var(--white);
  display: flex; flex-direction: column; justify-content: center; gap: 5px; align-items: center; border-radius: 3px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--forest); }
.main-nav.is-open {
  display: flex; flex-direction: column; gap: 4px; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-bottom: 1px solid var(--line); padding: 12px 18px 18px;
}
.main-nav.is-open a { border-bottom: 1px solid var(--cream-dark); }
.main-nav.is-open .nav-cta { border: 0; margin-top: 8px; color: var(--cream); }
.header-bare-cta { padding: 10px 16px; font-size: .9rem; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--forest-dark); color: var(--cream); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.hero-inner { position: relative; padding: 54px 0 46px; }
.hero h1 { color: var(--white); font-size: 2.05rem; max-width: 16ch; }
.hero p.lede { font-size: 1.02rem; max-width: 52ch; color: #e9e5d8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 26px; padding: 0; list-style: none; font-size: .86rem; color: #dcd7c6; }
.hero-badges li::before { content: "✓"; color: var(--gold-light); margin-right: 6px; }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 18px; }
.feature { background: var(--white); border: 1px solid var(--line); padding: 20px; }
.feature h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.feature p { margin: 0; font-size: .94rem; color: var(--muted); }
.feature-icon { font-size: 1.4rem; line-height: 1; margin-bottom: 10px; display: block; }

/* ---------- Resort cards ---------- */
.resort-card { background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; }
.resort-card-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.resort-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.resort-card h3 { margin-bottom: .2rem; }
.resort-card h3 a { color: var(--forest); }
.resort-location { font-size: .82rem; color: var(--gold); margin-bottom: .6rem; }
.resort-short { font-size: .94rem; color: var(--muted); }
.resort-highlights { list-style: none; padding: 0; margin: 0 0 18px; font-size: .88rem; color: var(--ink); }
.resort-highlights li { padding-left: 18px; position: relative; }
.resort-highlights li::before { content: "•"; position: absolute; left: 4px; color: var(--gold); }
.card-actions { display: flex; gap: 10px; margin-top: auto; }
.card-actions .btn { flex: 1; padding: 11px 12px; font-size: .88rem; }

/* ---------- Enquiry form ---------- */
.enquiry { background: var(--forest); color: var(--cream); padding: 46px 0; }
.enquiry-inner { display: grid; gap: 26px; }
.enquiry h2 { color: var(--white); }
.enquiry-copy p { color: #ded9cb; }
.tick-list { list-style: none; padding: 0; margin: 0 0 16px; font-size: .95rem; }
.tick-list li { padding-left: 22px; position: relative; margin-bottom: 6px; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); }
.enquiry-call a { color: var(--gold-light); font-weight: 600; }
.enquiry-form { background: var(--white); padding: 22px; border-radius: 3px; }
.field { margin-bottom: 14px; }
.field-row { display: grid; gap: 0; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.field label span { color: #b3402f; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 3px;
  font-family: inherit; font-size: 1rem; background: #fdfcf9; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: .9rem; margin: 10px 0 0; min-height: 1.2em; }
.form-status.is-error { color: #a13221; }
.form-privacy { font-size: .78rem; color: var(--muted); margin: 8px 0 0; }

/* ---------- Trust / reviews / FAQ ---------- */
.trust-item { border-left: 3px solid var(--gold); padding-left: 14px; }
.trust-item h3 { font-size: 1rem; margin-bottom: .2rem; }
.trust-item p { font-size: .92rem; color: var(--muted); margin: 0; }
.review { background: var(--white); border: 1px solid var(--line); padding: 20px; font-size: .95rem; }
.review p { font-style: italic; color: var(--ink); }
.review cite { font-style: normal; font-weight: 600; color: var(--forest); font-size: .9rem; }
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > button {
  width: 100%; text-align: left; background: none; border: 0; padding: 16px 30px 16px 0;
  font-family: var(--font-head); font-size: 1.02rem; font-weight: 600; color: var(--forest); cursor: pointer; position: relative;
}
.faq-item > button::after { content: "+"; position: absolute; right: 4px; top: 14px; font-size: 1.3rem; color: var(--gold); }
.faq-item.is-open > button::after { content: "–"; }
.faq-answer { display: none; padding: 0 0 16px; color: var(--muted); font-size: .95rem; }
.faq-item.is-open .faq-answer { display: block; }

/* ---------- Resort detail ---------- */
.breadcrumbs { font-size: .82rem; color: var(--muted); padding: 12px 0; }
.breadcrumbs a { color: var(--muted); }
.resort-hero-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.detail-grid { display: grid; gap: 26px; }
.spec-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.spec-list li { padding: 10px 12px; background: var(--cream); font-size: .93rem; }
.gallery { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sticky-side { position: sticky; top: 86px; }
.side-cta { border: 1px solid var(--line); padding: 20px; background: var(--cream); }
.side-cta .btn { margin-bottom: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-dark); color: #cfd4c8; padding: 42px 0 92px; font-size: .92rem; }
.footer-grid { display: grid; gap: 26px; }
.site-footer h3 { color: var(--white); font-size: 1rem; }
.site-footer a { color: #cfd4c8; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 7px; }
.footer-logo { width: 190px; height: auto; background: var(--cream); padding: 8px; border-radius: 3px; }
.footer-text { margin-top: 14px; color: #b9c0b0; }
.footer-tagline { color: var(--gold-light); letter-spacing: .08em; font-size: .82rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 26px; padding-top: 16px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; font-size: .85rem; }
.footer-legal a { margin-right: 14px; }
.disclaimer {
  font-size: .82rem;
  line-height: 1.6;
  color: #cfd8cb;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-left: 3px solid var(--gold, #c9a227);
  border-radius: 4px;
  background: rgba(255,255,255,.04);
}
.disclaimer strong { color: var(--gold, #c9a227); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: grid;
  grid-template-columns: repeat(3, 1fr); background: var(--forest); border-top: 1px solid rgba(255,255,255,.15);
}
.sticky-cta a { padding: 13px 6px; text-align: center; color: var(--cream); font-weight: 600; font-size: .9rem; }
.sticky-cta a:hover { text-decoration: none; }
.sticky-cta .sticky-primary { background: var(--gold); color: #1c1405; }

/* ---------- Content pages ---------- */
.page-hero { background: var(--cream); padding: 34px 0; border-bottom: 1px solid var(--line); }
.prose { max-width: 780px; }
.prose h2 { margin-top: 1.6em; }
.prose ul { padding-left: 20px; color: var(--muted); }
.thankyou { text-align: center; padding: 60px 0; }
.thankyou .btn { margin: 6px; }

/* ---------- Lead type selector (hotel / safari / both) ---------- */
.lead-type { border: 0; padding: 0; margin: 0 0 18px; }
.lead-type legend { font-weight: 600; font-size: .95rem; margin-bottom: 10px; padding: 0; }
.lead-type legend span { color: #c0392b; margin-left: 3px; }
.lead-type-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.lead-type-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.lead-type-card {
  display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center;
  padding: 12px 6px; border: 1.5px solid var(--line); border-radius: 4px; background: var(--cream);
  cursor: pointer; height: 100%; transition: border-color .15s, background .15s;
}
.lead-type-card strong { font-size: .9rem; line-height: 1.2; }
.lead-type-card small { font-size: .72rem; color: var(--muted); }
.lead-type-icon { font-size: 1.25rem; }
.lead-type-option:hover .lead-type-card { border-color: var(--gold); }
.lead-type-option input:checked + .lead-type-card { border-color: var(--forest); background: var(--white); box-shadow: 0 0 0 2px rgba(20,67,42,.15); }
.lead-type-option input:focus-visible + .lead-type-card { outline: 2px solid var(--gold); outline-offset: 2px; }

.form-block { border-top: 1px solid var(--line); padding-top: 14px; margin-bottom: 6px; }
.form-block[hidden] { display: none; }
.block-title { font-weight: 600; font-size: .88rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }

/* ---------- Safari promo band ---------- */
.safari-band-inner { display: grid; gap: 22px; align-items: center; }
.safari-band-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 3px; }
@media (min-width: 860px) {
  .safari-band-inner { grid-template-columns: 1.1fr .9fr; gap: 34px; }
}
@media (max-width: 420px) {
  .lead-type-options { grid-template-columns: 1fr; }
  .lead-type-card { flex-direction: row; justify-content: flex-start; gap: 10px; text-align: left; }
}

/* ---------- Premium refinements ---------- */
:root {
  --shadow-soft: 0 1px 2px rgba(19,58,37,.04), 0 8px 24px -12px rgba(19,58,37,.18);
  --shadow-lift: 0 2px 4px rgba(19,58,37,.05), 0 22px 46px -22px rgba(19,58,37,.32);
}

/* Fix: form sits on the dark enquiry band and was inheriting cream text */
.enquiry-form { color: var(--ink); box-shadow: var(--shadow-lift); border-radius: 6px; padding: 26px; }
.enquiry-form legend,
.enquiry-form .lead-type legend,
.enquiry-form .lead-type-card strong,
.enquiry-form label,
.enquiry-form p { color: var(--ink); }
.enquiry-form .lead-type-card small { color: var(--muted); }
.block-title { color: var(--forest); letter-spacing: .10em; font-size: .74rem; }
.form-block { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 4px; }

/* Typography polish */
h1, h2 { letter-spacing: -.015em; }
h1 { font-size: clamp(2rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.6rem, 2.7vw, 2.15rem); }
.section-head h2::after {
  content: ""; display: block; width: 54px; height: 2px;
  background: var(--gold); margin-top: 14px; opacity: .9;
}
.lede { font-size: 1.06rem; }

/* Cards */
.feature, .trust-item, .review, .resort-card, .side-cta {
  border-radius: 6px; background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature, .trust-item { padding: 24px 22px; }
.feature:hover, .trust-item:hover, .resort-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: rgba(179,130,47,.45); }
.feature h3, .trust-item h3 { position: relative; padding-top: 14px; }
.feature h3::before, .trust-item h3::before {
  content: ""; position: absolute; top: 0; left: 0; width: 26px; height: 2px; background: var(--gold);
}
.feature-icon { display: none; }
.lead-type-icon { display: none; }

/* Lead type cards */
.lead-type-card { border-radius: 6px; padding: 14px 8px; }
.lead-type-option input:checked + .lead-type-card { background: var(--cream); box-shadow: inset 0 0 0 1px var(--forest); }

/* Inputs */
.field input, .field select, .field textarea { border-radius: 5px; transition: border-color .15s ease, box-shadow .15s ease; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #c9c0aa; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(179,130,47,.18); }

/* Buttons */
.btn { border-radius: 5px; letter-spacing: .01em; transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease; }
.btn-gold { box-shadow: 0 10px 22px -14px rgba(179,130,47,.9); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-primary:hover { transform: translateY(-1px); }

/* Hero */
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,42,27,.45) 0%, rgba(13,42,27,.8) 100%);
}
.hero-badges li { border-radius: 999px; }

/* Header */
.site-header { box-shadow: 0 1px 0 rgba(19,58,37,.08); }
.main-nav a { position: relative; }
.main-nav a:not(.btn):hover { text-decoration: none; color: var(--gold); }

/* FAQ */
.faq-item > button:hover { color: var(--gold); }
.hero-media img { opacity: .85; }
.hero-inner { padding: 92px 0 82px; }

/* ---------- Mobile sticky call/WhatsApp bar ---------- */
.sticky-cta { grid-template-columns: 1fr 1fr; box-shadow: 0 -6px 24px -12px rgba(0,0,0,.5); }
.sticky-cta a { padding: 15px 8px; font-size: .95rem; letter-spacing: .01em; }
.sticky-cta a + a { background: #1faa59; color: #fff; }
@media (min-width: 860px) { .sticky-cta { display: none; } }
body { padding-bottom: 56px; }
@media (min-width: 860px) { body { padding-bottom: 0; } }

/* ---------- Stay + Safari combo badge ---------- */
.resort-card-media { position: relative; display: block; }
.combo-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--gold); color: #1c1405; font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px;
  box-shadow: 0 6px 16px -8px rgba(0,0,0,.6);
}

/* ---------- Legal pages ---------- */
.legal-content h2 { font-size: 1.15rem; margin-top: 1.8em; }
.legal-content p { color: var(--muted); }
.legal-content { max-width: 820px; }
