/* ============================================================
   KALADWAS LAL HAVELI — EXACT SITE CSS MATCH
   Colors, fonts, and styling from kaladwashotels.com
   Background: #ffffff (white)
   Primary accent / headings: #c8a96e (gold)
   Secondary heading: #3d3d3d (dark grey)
   Body text: #6b6b6b (medium grey)
   Nav background: #ffffff
   Footer background: #1a1a1a
   Button: #c8a96e gold
   Serif font: Lora (matches Richmond/Qode theme)
   Sans font: Raleway
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&display=swap');


:root {
  --gold:         #c8a96e;
  --gold-dark:    #a88a50;
  --gold-light:   #e8d5b0;
  --dark:         #1a1a1a;
  --dark2:        #2a2a2a;
  --dark3:        #3d3d3d;
  --body-text:    #6b6b6b;
  --light-text:   #999999;
  --white:        #ffffff;
  --off-white:    #f9f7f4;
  --border:       #e5e0d8;
  --border-gold:  rgba(200,169,110,0.3);
  --font-serif:   "Crimson Pro", serif;
  --font-sans:    "Crimson Pro", serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--body-text);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── NAVIGATION ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #2B1103;
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 40px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo span {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #c8a96e;
  letter-spacing: 0.02em;
}
.nav-logo small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.nav-menu {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-menu a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a96e;
  transition: color 0.25s;
}
.nav-menu a:hover { color: var(--gold); }
.nav-book {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  transition: background 0.25s;
}
.nav-book:hover { background: var(--gold-dark); }

/* ── HERO ── */
.hero {
    margin-top: 80px;
    position: relative;
    height: 58vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('Udaipur/Udaipur/udaipur-city-palace-sunset-view-udaipur-india.webp') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.78) 0%, rgba(26,26,26,0.3) 55%, rgba(26,26,26,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto; padding: 0 40px 72px;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.18;
  max-width: 780px;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  font-weight: 400;
  line-height: 1.75;
}

main {
  background: #2B1103;
}

/* ── SHARED LAYOUT ── */
.section { padding: 90px 0; background: var(--white); }
.section-alt { background: var(--off-white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-full { width: 100%; padding: 0 50px; }

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--dark3);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-sep {
  width: 42px; height: 2px;
  background: var(--gold);
  margin: 18px 0 22px;
}
.section-sep.center { margin: 18px auto 22px; }
.section-body {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.85;
  max-width: 700px;
}

/* ── INTRO SPLIT ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-img-wrap { position: relative; }
.intro-img-wrap img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.intro-img-wrap::before {
  content: '';
  position: absolute; top: -14px; left: -14px;
  right: 14px; bottom: 14px;
  border: 1px solid var(--border-gold);
  z-index: 0;
}
.intro-img-wrap img { position: relative; z-index: 1; }
.intro-badge {
  position: absolute; bottom: -18px; right: -18px; z-index: 2;
  width: 112px; height: 112px;
  background: var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.intro-badge b {
  font-family: var(--font-serif);
  font-size: 2.6rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.intro-badge small {
  font-family: var(--font-sans);
  font-size: 0.52rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
  text-align: center; margin-top: 2px;
}

/* ── PLACES LIST ── */
.places-header { text-align: center; margin-bottom: 70px; }
.places-header .section-body { margin: 0 auto; }

.place-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 80px;
  align-items: stretch;
}
.place-row:last-child { margin-bottom: 0; }
.place-row.flip { direction: rtl; }
.place-row.flip > * { direction: ltr; }

.place-img {
  position: relative; overflow: hidden;
}
.place-img img {
  width: 100%; height: 100%; min-height: 440px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.place-img:hover img { transform: scale(1.05); }
.place-num {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--font-serif);
  font-size: 4.5rem; font-weight: 700;
  color: rgba(255,255,255,0.18); line-height: 1;
  pointer-events: none;
}

.place-body {
  padding: 60px 56px;
  background: var(--off-white);
  display: flex; flex-direction: column; justify-content: center;
}
.place-row.flip .place-body { background: var(--white); border: 1px solid var(--border); }
.place-tag { margin-bottom: 10px; }
.place-title {
  font-family: var(--font-serif);
  font-size: 1.7rem; font-weight: 400;
  color: var(--dark3); line-height: 1.25;
  margin-bottom: 16px;
}
.place-desc {
  font-size: 0.92rem; color: var(--body-text);
  line-height: 1.85; margin-bottom: 20px;
}
.place-tip {
  border-left: 3px solid var(--gold);
  padding: 10px 16px;
  background: rgba(200,169,110,0.07);
  font-size: 0.82rem; color: var(--body-text);
  font-style: italic;
}
.place-tip strong { color: var(--dark3); font-style: normal; }

/* ── HIGHLIGHTS GRID ── */
.highlights-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.hl-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hl-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 22px 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.hl-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.hl-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}
.hl-card h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem; font-weight: 700;
  color: var(--dark3); margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.hl-card p { font-size: 0.8rem; color: var(--body-text); line-height: 1.6; }

/* ── ITINERARY SWITCHER (Day 1 / Day 2 quick overview) ── */
.itin-tabs {
  display: flex; justify-content: center;
  gap: 0; border: 1px solid var(--border);
  width: fit-content; margin: 0 auto 52px;
}
.itin-tab-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--body-text);
  padding: 12px 32px; border: none; background: none; cursor: pointer;
  transition: all 0.25s;
}
.itin-tab-btn.active { background: var(--gold); color: var(--white); }

.itin-day { display: none; }
.itin-day.active { display: block; }

.itin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.itin-sidebar {
  border-right: 1px solid var(--border);
  padding: 0;
}
.itin-stop-btn {
  display: block; width: 100%;
  padding: 22px 28px;
  border: none; border-bottom: 1px solid var(--border);
  background: none; text-align: left; cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.itin-stop-btn:last-child { border-bottom: none; }
.itin-stop-btn.active { background: var(--off-white); }
.itin-stop-btn.active::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 3px; background: var(--gold);
}
.itin-stop-time {
  font-family: var(--font-sans);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.itin-stop-name {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 400;
  color: var(--dark3); line-height: 1.3;
}
.itin-stop-btn:not(.active) .itin-stop-name { color: var(--body-text); }

.itin-panel { display: none; }
.itin-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.itin-panel-img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.itin-panel-body {
  padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.itin-panel-time {
  font-family: var(--font-sans);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.itin-panel-title {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 400;
  color: var(--dark3); margin-bottom: 14px; line-height: 1.3;
}
.itin-panel-desc {
  font-size: 0.88rem; color: var(--body-text);
  line-height: 1.8; margin-bottom: 16px;
}
.itin-bullets { list-style: none; }
.itin-bullets li {
  font-size: 0.84rem; color: var(--body-text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.itin-bullets li:last-child { border-bottom: none; }
.itin-bullets li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── DETAILED ITINERARY (scroll-triggered left panel) ── */
.detail-section { background: var(--white); }
.detail-day-nav {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  width: fit-content; margin-bottom: 52px;
}
.detail-day-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--body-text); padding: 12px 30px;
  border: none; background: none; cursor: pointer;
  transition: all 0.25s;
}
.detail-day-btn.active { background: var(--gold); color: var(--white); }
.detail-day-panel { display: none; }
.detail-day-panel.active { display: block; }

.detail-day-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400; color: var(--dark3);
  margin-bottom: 48px; line-height: 1.3;
}
.detail-day-title em { font-style: italic; color: var(--gold); }

/* THE KEY LAYOUT: sticky left + scrollable right */
.detail-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  align-items: start;
  position: relative;
}
.detail-layout::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 280px;
  width: 1px;
  background: var(--border);
}

/* LEFT sticky panel — updates as user scrolls */
.detail-sticky {
  position: sticky;
  top: 120px;
  padding-right: 40px;
  align-self: start;
}
.detail-sticky-time {
  font-family: var(--font-serif);
  font-size: 3.8rem; font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  transition: all 0.4s ease;
}
.detail-sticky-ampm {
  font-family: var(--font-sans);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--light-text); margin-bottom: 14px;
  transition: all 0.4s ease;
}
.detail-sticky-loc {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 400;
  color: var(--dark3); line-height: 1.3;
  transition: all 0.4s ease;
}
.detail-sticky-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin: 16px 0;
}

/* RIGHT scrollable entries */
.detail-entries { padding-left: 60px; }
.detail-entry {
  padding-bottom: 72px;
  position: relative;
}
.detail-entry:last-child { padding-bottom: 0; }

/* Dot on the dividing line */
.detail-entry::before {
  content: '';
  position: absolute;
  top: 8px; left: -64px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  transition: border-color 0.3s;
}
.detail-entry.is-active::before {
  border-color: var(--gold);
  background: var(--gold);
}

.detail-entry-time {
  font-family: var(--font-sans);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.detail-entry-title {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 400;
  color: var(--dark3); line-height: 1.3;
  margin-bottom: 6px;
}
.detail-entry-subtitle {
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.05em; color: var(--light-text);
  text-transform: uppercase; margin-bottom: 14px;
}
.detail-entry-desc {
  font-size: 0.92rem; color: var(--body-text);
  line-height: 1.85; margin-bottom: 16px;
}
.detail-entry-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; margin: 18px 0;
}
.detail-bullets { list-style: none; margin-top: 8px; }
.detail-bullets li {
  font-size: 0.88rem; color: var(--body-text);
  padding: 8px 0 8px 16px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.detail-bullets li:last-child { border-bottom: none; }
.detail-bullets li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}
.detail-bullets li strong { color: var(--dark3); font-weight: 600; }

/* ── WHERE TO STAY ── */
.stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.stay-imgs { position: relative; }
.stay-img-main { width: 85%; aspect-ratio: 3/4; object-fit: cover; }
.stay-img-accent {
  position: absolute;
  bottom: -24px; right: 0;
  width: 52%; aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid var(--white);
}
.stay-body .section-body { margin-bottom: 28px; }
.btn-gold {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--gold); color: var(--white);
  padding: 14px 36px;
  transition: background 0.25s;
}
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; color: var(--dark3);
  border: 1px solid var(--dark3);
  padding: 13px 36px;
  transition: all 0.25s; margin-left: 14px;
}
.btn-outline:hover { background: var(--dark3); color: var(--white); }

/* ── FAQ ── */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  font-family: var(--font-sans);
  font-size: 0.9rem; font-weight: 600;
  color: var(--dark3); text-align: left;
  padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  background: var(--gold);
  top: 50%; left: 50%;
}
.faq-icon::before { width: 10px; height: 1px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1px; height: 10px; transform: translate(-50%,-50%); transition: transform 0.3s, opacity 0.3s; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner {
  padding: 0 0 22px;
  font-size: 0.9rem; color: var(--body-text); line-height: 1.85;
}

/* ── FOOTER ── */
.site-footer { background: #2b1103; padding: 70px 0 30px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px; margin-bottom: 52px;
}
.footer-brand-name {
   width: 50%;
}
.footer-brand-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 20px;
}
.footer-about {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  line-height: 1.8; margin-bottom: 16px;
  max-width: 300px;
}
.footer-contact-item {
  font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 6px;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.82rem; color: rgb(200 169 110);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-policy a {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  margin-left: 20px; transition: color 0.2s;
}
.footer-policy a:hover { color: var(--gold); }

a.footer-a {
    color: #c8a96e;
}

a.footer-a:hover {
  color: #fff;
}
/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-l, .reveal-r {
  opacity: 0; transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal       { transform: translateY(28px); }
.reveal-l     { transform: translateX(-28px); }
.reveal-r     { transform: translateX(28px); }
.reveal.on, .reveal-l.on, .reveal-r.on { opacity: 1; transform: none; }

    /* ── PAGE HERO ── */
    .blog-hero {
      margin-top: 80px;
      background: var(--brand-dark);
      padding: 80px 40px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
      background: #2B1103;
    }
    .blog-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(200,169,110,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .blog-hero-tag {
      display: inline-block;
      font-family: var(--font-sans);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 6px 16px;
      margin-bottom: 20px;
    }
    .blog-hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .blog-hero h1 em { font-style: italic; color: var(--gold-light); }
    .blog-hero p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.6);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.8;
    }
    .hero-sep {
      width: 42px; height: 2px;
      background: var(--gold);
      margin: 20px auto;
    }

    /* ── GRID ── */
    .grid-wrap {
      max-width: 1260px; margin: 0 auto; padding: 52px 40px 80px;
    }
    .grid-label {
      font-family: var(--font-sans);
      font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 28px;
      display: block;
    }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .art-card {
      background: var(--white);
      border: 1px solid var(--border);
      overflow: hidden;
      display: flex; flex-direction: column;
      transition: box-shadow 0.3s, transform 0.3s;
      cursor: pointer;
    }
    .art-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.09); transform: translateY(-3px); }

    .art-img {
      position: relative; overflow: hidden;
    }
    .art-img img {
      width: 100%; aspect-ratio: 3/2; object-fit: cover;
      transition: transform 0.7s ease;
    }
    .art-card:hover .art-img img { transform: scale(1.06); }
    .art-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(43,17,3,0.4) 0%, transparent 55%);
      opacity: 0; transition: opacity 0.4s;
    }
    .art-card:hover .art-img-overlay { opacity: 1; }

    .art-cat-badge {
      position: absolute; top: 16px; left: 16px;
      background: var(--brand-dark);
      color: var(--gold);
      font-family: var(--font-sans);
      font-size: 0.52rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 5px 12px;
    }

    .art-content {
      padding: 26px 26px 28px;
      display: flex; flex-direction: column; flex: 1;
    }
    .art-cat {
      font-family: var(--font-sans);
      font-size: 0.58rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 8px; display: block;
    }
    .art-title {
      font-family: var(--font-serif);
      font-size: 1.25rem; font-weight: 400;
      color: var(--dark3); line-height: 1.3;
      margin-bottom: 10px;
    }
    .art-title em { font-style: italic; color: var(--gold); }
    .art-excerpt {
      font-size: 0.85rem; color: var(--body-text);
      line-height: 1.75; margin-bottom: 18px; flex: 1;
    }
    .art-footer {
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid var(--border);
      padding-top: 14px;
    }
    .art-read-time {
      font-size: 0.72rem; color: var(--light-text);
      letter-spacing: 0.04em;
    }
    .art-arrow {
      width: 32px; height: 32px;
      border: 1px solid var(--border-gold);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 0.9rem;
      transition: background 0.2s, color 0.2s;
    }
    .art-card:hover .art-arrow { background: var(--gold); color: var(--white); }

    /* ── SEPARATOR QUOTE ── */
    .mid-quote {
      background: var(--brand-dark);
      padding: 60px 40px;
      text-align: center;
    }
    .mid-quote blockquote {
      font-family: var(--font-serif);
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 400;
      color: var(--white);
      font-style: italic;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.5;
    }
    .mid-quote blockquote em { color: var(--gold-light); font-style: normal; }
    .mid-quote cite {
      display: block; margin-top: 18px;
      font-family: var(--font-sans);
      font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold);
      font-style: normal;
    }

    /* ── NEWSLETTER ── */
    .newsletter {
      background: var(--off-white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 64px 40px;
      text-align: center;
    }
    .newsletter .section-tag {
      font-family: var(--font-sans);
      font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px; display: block;
    }
    .newsletter h3 {
      font-family: var(--font-serif);
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 400; color: var(--dark3); margin-bottom: 10px;
    }
    .newsletter p {
      font-size: 0.88rem; color: var(--body-text);
      margin-bottom: 28px;
    }
    .nl-form {
      display: flex; gap: 0; max-width: 440px;
      margin: 0 auto; border: 1px solid var(--border);
    }
    .nl-form input {
      flex: 1; padding: 14px 18px;
      border: none; outline: none;
      font-family: var(--font-sans);
      font-size: 0.85rem; color: var(--dark3);
      background: var(--white);
    }
    .nl-form button {
      padding: 14px 28px;
      background: var(--gold); color: var(--white);
      border: none; cursor: pointer;
      font-family: var(--font-sans);
      font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      transition: background 0.2s;
    }
    .nl-form button:hover { background: var(--gold-dark); }

    /* ── REVEAL ── */
    /* .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.on { opacity: 1; transform: none; } */



/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .intro-grid, .place-row, .place-row.flip,
  .highlights-grid-wrap, .stay-grid,
  .detail-layout { grid-template-columns: 1fr; direction: ltr; }
  .itin-layout { grid-template-columns: 1fr; }
  .itin-sidebar { border-right: none; border-bottom: 1px solid var(--border); display: flex; overflow-x: auto; }
  .itin-stop-btn { flex-shrink: 0; border-bottom: none; border-right: 1px solid var(--border); }
  .itin-panel.active { grid-template-columns: 1fr; }
  .itin-panel-img { min-height: 240px; }
  .detail-sticky { position: relative; top: auto; padding-right: 0; padding-bottom: 32px; }
  .detail-layout::before { display: none; }
  .detail-entries { padding-left: 0; }
  .detail-entry::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .nav-menu { display: none; }
}
@media(max-width:600px){
  .container { padding: 0 20px; }
  .hero-content { padding: 0 20px 52px; }
  .nav-inner { padding: 0 20px; }
  .section { padding: 60px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .hl-cards { grid-template-columns: 1fr; }

  .section-body{
    font-size: 13px;
  }

  .section-heading{
    font-size: 20px;
  }

  .place-title{
    font-size: 20px;
  }

  .place-body{
    padding: 50px 10px;
  }
  .place-desc{
    font-size: 13px;
  }
  .place-row.flip .place-body{
    background: none;
    border: none;
  }

  .container-full{
    padding: 0 30px;
  }

  .place-img img {
    width: 100%;
    height: 80%;
    min-height: 260px;}

    .itin-panel-body {
    padding: 34px 10px;}

   .detail-day-btn{
    padding: 12px 10px;
   } 
   .detail-day-title {
    font-size: 20px;
    margin-bottom: 28px;}

    .detail-sticky-dot {
    display: none;
}

.nav-book {
  padding: 10px 15px;
  font-size: 0.6rem;
}

.btn-new {
    display: flex;
}

.btn-gold {
    padding: 10px 15px;
    font-size: 0.6rem;
}

.btn-outline{
    padding: 9px 15px;
    font-size: 0.6rem;
}
.itin-stop-btn
 {
    width: 70%;
    padding: 10px 12px;}

    .hero {
    height: 73vh;
    min-height: 400px;}

    .stay-body .section-body{
      margin-bottom: 5px;
    }

    .hero h1 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.18;
    max-width: 780px;
    margin-bottom: 20px;
}

.itin-tab-btn {
    padding: 12px 10px;
}

.nav-inner { padding: 0 20px; }
      .nav-book { padding: 10px 15px; font-size: 0.6rem; }
      .blog-hero { padding: 60px 20px 48px; }
      .filter-bar { padding: 0 20px; }
      .grid-wrap { padding-left: 20px; padding-right: 20px; }
      .articles-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .container-full { padding: 0 20px; }
      .nl-form { flex-direction: column; }
      .nl-form input, .nl-form button { width: 100%; }
}