:root {
  --cream: #fbf6ef;
  --sand: #f3e6d3;
  --ink: #2a2320;
  --muted: #6d5f55;
  --teal: #0d6b70;
  --teal-dark: #083f43;
  --rani: #b8235a;
  --saffron: #e39321;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(42, 35, 32, .12);
  --wrap: 1120px;
  --head: "Frank Ruhl Libre", "David Libre", Georgia, serif;
  --body: "Assistant", "Heebo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: var(--body); font-size: 18px; line-height: 1.75; word-spacing: .03em;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); }
h1, h2, h3 { font-family: var(--head); line-height: 1.2; margin: 0; text-wrap: balance; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.title { font-size: clamp(32px, 4.6vw, 52px); color: var(--teal-dark); text-align: center; margin-bottom: clamp(28px, 4vw, 56px); }
.title::after {
  content: ""; display: block; width: 72px; height: 4px; margin: 18px auto 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--rani));
}
.lead { font-family: var(--head); font-size: clamp(22px, 2.4vw, 28px); line-height: 1.5; color: var(--teal-dark); }
.accent { color: var(--rani); font-weight: 700; }

/* buttons */
.btn {
  display: inline-block; text-decoration: none; text-align: center; cursor: pointer;
  font: 700 18px/1 var(--body); color: var(--white); background: var(--rani);
  padding: 17px 30px; border-radius: 999px; border: 2px solid var(--rani);
  box-shadow: 0 8px 22px rgba(184, 35, 90, .3); transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(184, 35, 90, .38); }
.btn:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.85); box-shadow: none; }
.btn-ghost:hover { background: rgba(255,255,255,.14); box-shadow: none; }
.btn-small { padding: 11px 20px; font-size: 16px; box-shadow: none; }

/* header */
.topbar {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px; padding: 10px clamp(16px, 3vw, 36px);
  background: rgba(251, 246, 239, .92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42,35,32,.06); transition: box-shadow .2s;
}
.topbar.scrolled { box-shadow: 0 6px 24px rgba(42,35,32,.08); }
.brand img { height: 68px; width: auto; }
.nav { display: flex; gap: 28px; margin-inline-start: auto; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 17px; }
.nav a:hover { color: var(--rani); }
@media (max-width: 760px) {
  .nav { display: none; }
  .topbar .btn-small { margin-inline-start: auto; }
  .brand img { height: 54px; }
}

/* hero */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; color: var(--white); text-align: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,32,34,.55) 0%, rgba(8,32,34,.35) 40%, rgba(40,10,24,.75) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 20px 72px; max-width: 900px; }
.kicker { font-size: 17px; letter-spacing: normal; opacity: .92; margin-bottom: 12px; }
.hero h1 { font-size: clamp(46px, 9vw, 104px); font-weight: 900; text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.hero-sub { font-family: var(--head); font-size: clamp(28px, 4.6vw, 50px); color: #ffd79a; margin: 6px 0 18px; }
.cities { font-size: clamp(19px, 2.4vw, 24px); font-weight: 600; margin-bottom: 14px; }
.dates {
  display: inline-block; font-weight: 700; font-size: clamp(17px, 2vw, 20px);
  padding: 8px 20px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35);
}
.tagline { font-size: clamp(18px, 2.2vw, 22px); margin: 18px 0 30px; opacity: .95; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* arch image frame (Rajasthani jharokha) */
.arch { margin: 0; border-radius: 999px 999px var(--radius) var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; background: var(--sand); }
.arch img { width: 100%; height: 100%; object-fit: cover; }

/* intro */
.intro-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.intro-text p:not(.lead):not(.accent) { color: var(--muted); }
.intro-text .accent { font-size: 21px; margin-top: 1.4em; }
@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro .arch { max-width: 420px; margin-inline: auto; order: -1; }
}

/* facts */
.facts { background: var(--teal-dark); color: var(--white); padding-block: 44px; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.fact strong { display: block; font-family: var(--head); font-size: 54px; line-height: 1; color: #ffd79a; }
.fact span { display: block; margin-top: 8px; font-size: 17px; opacity: .9; }
@media (max-width: 700px) { .facts-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; } }

/* route */
.route { padding-bottom: 0; }
.route-line {
  list-style: none; margin: 0; padding: 0; display: flex; justify-content: space-between; position: relative;
}
.route-line::before {
  content: ""; position: absolute; inset-inline: 6%; top: 11px; height: 3px;
  background: repeating-linear-gradient(90deg, var(--saffron) 0 10px, transparent 10px 18px);
}
.route-line li { position: relative; flex: 1; text-align: center; padding-top: 36px; font-weight: 700; font-size: clamp(15px, 2vw, 19px); }
.route-line li::before {
  content: ""; position: absolute; top: 2px; left: 50%; translate: -50% 0; /* centered: direction-neutral */
  width: 22px; height: 22px; border-radius: 50%; background: var(--rani); border: 4px solid var(--cream); box-shadow: 0 0 0 2px var(--rani);
}

/* days */
.days .title { margin-bottom: 20px; }
.day {
  display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(28px, 5vw, 64px); align-items: start;
  padding-block: clamp(36px, 5vw, 60px); border-bottom: 1px solid rgba(42,35,32,.08);
}
.day:last-child { border-bottom: 0; }
.day:nth-child(odd of .day) .arch { order: 2; }
.day .arch { position: sticky; top: 100px; }
.day-num {
  display: inline-block; margin-bottom: 12px; padding: 4px 16px; border-radius: 999px;
  background: var(--sand); color: var(--rani); font-weight: 700; font-size: 16px;
}
.day h3 { font-size: clamp(27px, 3.2vw, 36px); color: var(--teal-dark); margin-bottom: 12px; }
.day-sub { font-weight: 700; color: var(--ink); }
.day-body p { color: var(--muted); }
.day-body .day-sub, .day-body .day-num { color: var(--ink); }
.day-body .day-num { color: var(--rani); }
.day-body .accent { color: var(--rani); font-size: 21px; }
.stay {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font-weight: 700; color: var(--teal) !important;
}
.stay::before { content: "🛏"; font-size: 18px; }
@media (max-width: 860px) {
  .day { grid-template-columns: 1fr; }
  .day .arch, .day:nth-child(odd of .day) .arch { order: 0; position: static; aspect-ratio: 4 / 3; border-radius: 160px 160px var(--radius) var(--radius); }
}

/* feeling */
.feeling { background: linear-gradient(160deg, var(--teal-dark), #0b5357); color: var(--white); }
.feeling-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.feeling .lead { color: #ffd79a; margin-block: 1.2em; }
.soon { list-style: none; padding: 0; margin: 0 0 1em; }
.soon li { padding-block: 6px; padding-inline-start: 30px; position: relative; font-size: 19px; }
.soon li::before { content: "✦"; position: absolute; inset-inline-start: 0; color: var(--saffron); }
.note-strong { font-weight: 700; margin-bottom: 28px; }
.mosaic { display: grid; gap: 16px; }
.mosaic img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); box-shadow: 0 18px 40px rgba(0,0,0,.3); }
.mosaic img:first-child { border-radius: 999px 999px var(--radius) var(--radius); aspect-ratio: 1 / 1; }
@media (max-width: 860px) { .feeling-grid { grid-template-columns: 1fr; } .mosaic { grid-template-columns: 1fr 1fr; } .mosaic img:first-child { aspect-ratio: 3 / 4; } .mosaic img { aspect-ratio: 3 / 4; } }

/* "what's special" block at the top of the green section */
.special { padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.2); }
.special-title { font-size: clamp(28px, 3.4vw, 38px); color: #ffd79a; margin-bottom: 16px; }
.special p { font-size: 19px; }

/* quote */
.quote { padding-block: clamp(64px, 9vw, 110px); background: var(--sand); text-align: center; }
.quote blockquote { margin: 0 auto; }
.quote p { font-family: var(--head); font-size: clamp(26px, 3.6vw, 42px); line-height: 1.45; color: var(--teal-dark); margin: 0; }

/* price */
.price-card {
  max-width: 560px; margin: 0 auto 48px; text-align: center; background: var(--white);
  border-radius: 28px; padding: 40px 28px; box-shadow: var(--shadow); border-top: 6px solid var(--rani);
}
.price-label { font-weight: 700; font-size: 20px; margin-bottom: 4px; }
.price-big { font-family: var(--head); font-size: clamp(56px, 9vw, 80px); font-weight: 900; color: var(--rani); line-height: 1.1; margin-bottom: 10px; }
.price-extra { font-size: 19px; font-weight: 600; }
.price-note { font-size: 15px; color: var(--muted); margin: 14px 0 0; }
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.incl { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: 0 6px 20px rgba(42,35,32,.06); }
.incl h3 { font-size: 26px; color: var(--teal-dark); margin-bottom: 14px; }
.incl ul { list-style: none; margin: 0; padding: 0; }
.incl li { position: relative; padding-inline-start: 34px; padding-block: 7px; border-bottom: 1px dashed rgba(42,35,32,.1); }
.incl li:last-child { border-bottom: 0; }
.incl li::before {
  position: absolute; inset-inline-start: 0; top: 9px; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px; font-weight: 700; color: var(--white);
}
.yes li::before { content: "✓"; background: var(--teal); }
.no li::before { content: "✕"; background: #b9aaa0; }
.fine { max-width: 820px; margin: 40px auto 0; font-size: 15px; color: var(--muted); text-align: center; }
@media (max-width: 760px) { .incl-grid { grid-template-columns: 1fr; } }

/* join */
.join { background: var(--sand); }
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.join .title { text-align: start; margin-bottom: 10px; }
.join .title::after { margin-inline: 0; }
.signoff { display: flex; align-items: center; gap: 18px; margin-top: 30px; }
.guide-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; background: var(--white); box-shadow: 0 6px 18px rgba(42,35,32,.12); flex: none; }
.signoff p { margin: 0; }
.signoff-hi { color: var(--muted); }
.signoff-name { font-family: var(--head); font-size: 28px; font-weight: 700; color: var(--teal-dark); }
.signoff-role { color: var(--muted); font-size: 16px; }
.lead-form { background: var(--white); border-radius: 24px; padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow); display: grid; gap: 6px; }
.lead-form label { font-weight: 700; font-size: 16px; margin-top: 8px; }
.lead-form input, .lead-form textarea {
  width: 100%; font: 18px var(--body); padding: 13px 14px; border-radius: 12px; border: 1.5px solid #dccfc2; background: var(--cream); color: var(--ink);
}
.lead-form input[dir="ltr"] { text-align: end; }
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,107,112,.15); }
.lead-form .check { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; margin: 12px 0 10px; }
.lead-form .check input { width: 20px; height: 20px; flex: none; margin-top: 4px; accent-color: var(--teal); }
.lead-form .btn { width: 100%; margin-top: 6px; }
.lead-form .hp { position: absolute; inset-inline-start: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg { margin: 10px 0 0; font-weight: 700; min-height: 1.5em; }
.form-msg.ok { color: var(--teal); }
.form-msg.err { color: var(--rani); }
.lead-form.sent input, .lead-form.sent textarea, .lead-form.sent .check, .lead-form.sent label, .lead-form.sent button { display: none; }
.lead-form.sent .form-msg { font-size: 22px; font-family: var(--head); text-align: center; padding: 30px 0; }
@media (max-width: 860px) { .join-grid { grid-template-columns: 1fr; } }

/* guides */
.guides { background: var(--white); }
.guides-intro { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.guides-photo { margin: 0; text-align: center; }
.guides-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); border: 6px solid var(--white); outline: 1px solid rgba(42,35,32,.08); }
.guides-photo figcaption { margin-top: 12px; font-family: var(--head); font-size: 22px; color: var(--teal-dark); }
.guides-text p:not(.lead):not(.accent) { color: var(--muted); }
.guides-text .accent { font-size: 21px; }
.guides-sub { text-align: center; font-size: clamp(26px, 3vw, 34px); color: var(--teal-dark); margin: clamp(48px, 7vw, 80px) 0 32px; }
.guide-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); justify-content: center; gap: clamp(24px, 5vw, 64px); }
.guide { text-align: center; }
.guide img { width: 220px; height: auto; margin: 0 auto 14px; filter: drop-shadow(0 10px 20px rgba(42,35,32,.15)); }
.guide h4 { font-family: var(--head); font-size: 26px; color: var(--rani); margin: 0 0 8px; }
.guide p { color: var(--muted); margin: 0; }
@media (max-width: 760px) {
  .guides-intro { grid-template-columns: 1fr; }
  .guide-cards { grid-template-columns: 1fr; }
}

/* reviews (closed until the button is pressed) */
.reviews { text-align: center; padding-block: clamp(48px, 7vw, 80px); }
.reviews-toggle { background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: 0 8px 22px rgba(8,63,67,.25); }
.reviews-toggle::after { content: "▾"; display: inline-block; margin-inline-start: 10px; transition: transform .2s; }
.reviews-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }
.reviews-list { margin-top: 36px; display: grid; gap: 22px; text-align: start; max-width: 860px; margin-inline: auto; }
.reviews-list[hidden] { display: none; }
.review {
  position: relative; background: var(--white); border-radius: var(--radius); padding: 30px 30px 24px;
  box-shadow: 0 6px 20px rgba(42,35,32,.07); border-inline-start: 5px solid var(--saffron);
}
.review::before { content: "”"; position: absolute; inset-block-start: 4px; inset-inline-end: 18px; font-family: var(--head); font-size: 72px; line-height: 1; color: var(--sand); }
.review p { color: var(--ink); font-size: 17px; font-weight: 700; }
.review .review-name { margin: 14px 0 0; color: var(--rani); font-weight: 700; font-size: 17px; }

/* footer (same contact block as the HerTime Damanhur page) */
.footer { background: #57876f; color: var(--white); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: auto 1fr 1fr; gap: clamp(28px, 6vw, 90px); align-items: start; }
.footer-brand { display: grid; justify-items: center; gap: 14px; }
.footer-logo { width: 130px; height: auto; }
.social { display: flex; gap: 12px; }
.social a { width: 52px; height: 52px; border-radius: 50%; background: var(--white); color: #57876f; display: grid; place-items: center; transition: transform .15s; }
.social a:hover { transform: scale(1.08); }
.footer-col h2 { font-family: var(--body); font-weight: 600; font-size: 22px; margin: 0 0 12px; }
.contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; font-size: 17px; }
.contact a { color: var(--white); text-decoration: none; }
.contact a:hover { text-decoration: underline; }
.credits { margin-top: 30px; font-size: 13px; opacity: .8; }
.credits summary { cursor: pointer; }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* floating whatsapp + phone */
.wa-float, .tel-float {
  position: fixed; inset-block-end: 20px; left: 20px; z-index: 40; /* bottom-left, as on the HerTime site */
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: var(--white); box-shadow: 0 8px 22px rgba(0,0,0,.25);
}
.tel-float { inset-block-end: 90px; background: #57876f; }

/* reveal on scroll (only when JS is running) */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }
