@charset "UTF-8";
/* ============================================================
   AMRITSAR — International Travel Guide
   Design system: Heritage Luxury
   Palette:
     --maroon      #5C1A1B  (temple sanctum walls)
     --maroon-deep #3E1012  (shadow / depth)
     --gold        #B8873D  (gold leaf, restrained)
     --gold-light  #D9B872  (hairlines, hover)
     --ivory       #FBF7EF  (page background)
     --sand        #EFE4CC  (alternate section bg)
     --ink         #2A2320  (body text)
     --bottle      #1F3B2C  (secondary accent, rare use)
   Type:
     Display — 'Cormorant', serif (elegant, high-contrast)
     Body    — 'Jost', sans-serif (clean geometric humanist)
     Caption — 'Cormorant', small-caps, letter-spaced
   Signature: the jharokha arch — pointed, scalloped window
   frame used for image panels + section dividers.
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Jost:wght@300;400;500;600&display=swap");
:root {
  --maroon: #5C1A1B;
  --maroon-deep: #3E1012;
  --gold: #B8873D;
  --gold-light: #D9B872;
  --ivory: #FBF7EF;
  --sand: #EFE4CC;
  --ink: #2A2320;
  --bottle: #1F3B2C;
  --shadow: 0 12px 40px rgba(62, 16, 18, 0.14);
  --arch-radius: 120px 120px 8px 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: "Jost", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: "Cormorant", serif;
  font-weight: 600;
  color: var(--maroon-deep);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.eyebrow {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 0.9rem;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 6vw;
}

/* ---------- Jharokha arch shapes ---------- */
.arch-frame {
  position: relative;
  border-radius: var(--arch-radius);
  overflow: hidden;
  border: 1px solid var(--gold-light);
  box-shadow: var(--shadow);
}

.arch-frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184, 135, 61, 0.55);
  border-radius: 108px 108px 4px 4px;
  pointer-events: none;
}

.arch-divider {
  width: 68px;
  height: 34px;
  margin: 1.6rem auto;
  border: 1.5px solid var(--gold);
  border-bottom: none;
  border-radius: 34px 34px 0 0;
  position: relative;
}

.arch-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.section-title-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-title-block.left {
  text-align: left;
  margin: 0 0 3rem;
}

/* ---------- Placeholder photography blocks ---------- */
.photo-block {
  position: relative;
  min-height: 260px;
  background: linear-gradient(135deg, rgba(92, 26, 27, 0.86), rgba(31, 59, 44, 0.5)), repeating-linear-gradient(45deg, rgba(184, 135, 61, 0.08) 0 2px, transparent 2px 14px);
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
}

.photo-block .cap {
  padding: 1.1rem 1.3rem;
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent);
  width: 100%;
}

.photo-block .cap b {
  font-style: normal;
  font-weight: 600;
  display: block;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.35s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--ivory);
}

.btn-gold:hover {
  background: var(--maroon-deep);
}

.btn-outline {
  border-color: rgba(251, 247, 239, 0.7);
  color: var(--ivory);
}

.btn-outline:hover {
  background: rgba(251, 247, 239, 0.12);
  border-color: var(--ivory);
}

.btn-outline-dark {
  border-color: var(--maroon);
  color: var(--maroon);
}

.btn-outline-dark:hover {
  background: var(--maroon);
  color: var(--ivory);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.4rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(10px);
  padding: 0.9rem 0;
  box-shadow: 0 6px 24px rgba(62, 16, 18, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Cormorant", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ivory);
  transition: color 0.4s ease;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  color: var(--gold-light);
  margin-top: 4px;
}

.site-header.scrolled .logo {
  color: var(--maroon-deep);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.main-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.4s ease;
}

.site-header.scrolled .main-nav a {
  color: var(--ink);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--gold);
}

.site-header.scrolled .main-nav a.active {
  color: var(--gold);
}

.lang-toggle {
  display: flex;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  border-left: 1px solid rgba(251, 247, 239, 0.35);
  padding-left: 1.2rem;
  margin-left: 0.4rem;
}

.site-header.scrolled .lang-toggle {
  border-left-color: rgba(42, 35, 32, 0.2);
}

.lang-toggle button {
  background: none;
  border: none;
  color: inherit;
  opacity: 0.55;
  font-family: "Jost", sans-serif;
  padding: 0.2rem 0.35rem;
}

.lang-toggle button.active {
  opacity: 1;
  color: var(--gold);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 600;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ivory);
  transition: all 0.3s ease;
}

.site-header.scrolled .nav-toggle span {
  background: var(--maroon-deep);
}

.nav-toggle span:nth-child(1) {
  top: 0;
}

.nav-toggle span:nth-child(2) {
  top: 10px;
}

.nav-toggle span:nth-child(3) {
  top: 20px;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(62, 16, 18, 0.55) 0%, rgba(62, 16, 18, 0.78) 60%, var(--ivory) 100%), radial-gradient(ellipse at 30% 20%, rgba(184, 135, 61, 0.35), transparent 55%), linear-gradient(120deg, #3E1012, #5C1A1B 45%, #1F3B2C 130%);
  color: var(--ivory);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(217, 184, 114, 0.05) 0 1px, transparent 1px 60px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 4rem;
}

.hero .eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--ivory);
  margin-bottom: 1.3rem;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero p.lead {
  font-size: 1.1rem;
  max-width: 540px;
  color: rgba(251, 247, 239, 0.86);
  margin-bottom: 2.3rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-arch {
  position: absolute;
  right: 4vw;
  bottom: 0;
  width: 34vw;
  max-width: 460px;
  min-width: 260px;
  height: 78%;
  background: linear-gradient(160deg, rgba(184, 135, 61, 0.28), rgba(184, 135, 61, 0.06)), repeating-linear-gradient(45deg, rgba(217, 184, 114, 0.06) 0 2px, transparent 2px 16px);
  border: 1px solid rgba(217, 184, 114, 0.4);
  border-radius: 240px 240px 0 0;
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 6vw;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 247, 239, 0.75);
}

.hero-scroll .line {
  width: 40px;
  height: 1px;
  background: var(--gold-light);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    transform: scaleX(1);
    opacity: 0.6;
  }
  50% {
    transform: scaleX(0.4);
    opacity: 1;
  }
}
/* ---------- Intro strip ---------- */
.intro-strip {
  background: var(--maroon);
  color: var(--ivory);
  padding: 2.4rem 0;
}

.intro-strip .container {
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

.intro-stat {
  flex: 1;
  min-width: 140px;
}

.intro-stat .num {
  font-family: "Cormorant", serif;
  font-size: 2.1rem;
  color: var(--gold-light);
  display: block;
}

.intro-stat .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---------- Sections generic ---------- */
section {
  padding: 7rem 0;
  position: relative;
}

.section-alt {
  background: var(--sand);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-grid .photo-block {
  min-height: 460px;
}

.about-copy p {
  margin-bottom: 1.2rem;
  color: #4A3F39;
}

.timeline {
  margin-top: 2rem;
  border-left: 1px solid var(--gold-light);
  padding-left: 1.6rem;
}

.timeline-item {
  margin-bottom: 1.3rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.68rem;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-item .yr {
  font-family: "Cormorant", serif;
  font-weight: 600;
  color: var(--maroon);
  margin-right: 0.6rem;
}

/* ---------- Attractions ---------- */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.attraction-card {
  position: relative;
}

.attraction-card .photo-block {
  height: 320px;
  transition: transform 0.6s ease;
}

.attraction-card:hover .photo-block {
  transform: translateY(-6px);
}

.attraction-card .card-body {
  padding: 1.4rem 0.3rem;
}

.attraction-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.attraction-card p {
  font-size: 0.92rem;
  color: #5a4d46;
  margin-bottom: 0.8rem;
}

.tag-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
}

.tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gold-light);
  color: var(--maroon);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.card-link {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ---------- Food ---------- */
.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.food-card {
  text-align: center;
}

.food-card .photo-block {
  height: 190px;
  border-radius: 90px 90px 4px 4px;
  margin-bottom: 1rem;
}

.food-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.food-card p {
  font-size: 0.82rem;
  color: #5a4d46;
}

/* ---------- Shopping ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.2rem;
}

.shop-card {
  position: relative;
}

.shop-card .photo-block {
  height: 220px;
}

.shop-card .card-body {
  padding: 1.1rem 0.2rem;
}

.shop-card.feature {
  grid-row: span 2;
}

.shop-card.feature .photo-block {
  height: 470px;
}

/* ---------- Events ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.event-card {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.event-date {
  background: var(--maroon);
  color: var(--gold-light);
  font-family: "Cormorant", serif;
  text-align: center;
  padding: 1.1rem 0;
}

.event-date .d {
  font-size: 1.9rem;
  font-weight: 700;
  display: block;
}

.event-date .m {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-body {
  padding: 1.3rem 1.4rem;
}

.event-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.event-body p {
  font-size: 0.86rem;
  color: #5a4d46;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 0.9rem;
}

.gallery-grid .photo-block {
  border-radius: 6px;
  cursor: zoom-in;
  height: 100%;
}

.gallery-grid .g-tall {
  grid-row: span 2;
}

.gallery-grid .g-wide {
  grid-column: span 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(31, 20, 18, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  max-width: 780px;
  width: 90%;
}

.lightbox-inner .photo-block {
  height: 60vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  color: var(--ivory);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(251, 247, 239, 0.5);
  padding: 0.5rem 1rem;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.blog-card .photo-block {
  height: 210px;
}

.blog-card .card-body {
  padding: 1.2rem 0.1rem;
}

.blog-meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.blog-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.blog-card p {
  font-size: 0.88rem;
  color: #5a4d46;
  margin-bottom: 0.7rem;
}

/* ---------- Testimonials ---------- */
.testimonial-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.testimonial-slide p {
  font-family: "Cormorant", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--maroon-deep);
  margin-bottom: 1.4rem;
}

.testimonial-author {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a4d46;
}

.testimonial-dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
}

.testimonial-dots button.active {
  background: var(--gold);
}

/* ---------- Footer ---------- */
footer {
  background: var(--maroon-deep);
  color: rgba(251, 247, 239, 0.85);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h5 {
  font-family: "Cormorant", serif;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.04em;
}

.footer-col p {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  opacity: 0.78;
  margin-bottom: 0.65rem;
  transition: opacity 0.25s, color 0.25s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.social-row {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.social-row a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(251, 247, 239, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.social-row a:hover {
  border-color: var(--gold-light);
}

.newsletter-form {
  display: flex;
  margin-top: 0.6rem;
  border-bottom: 1px solid rgba(251, 247, 239, 0.4);
}

.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  color: var(--ivory);
  padding: 0.6rem 0;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(251, 247, 239, 0.5);
}

.newsletter-form button {
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.1rem;
}

.emergency-strip {
  border-top: 1px solid rgba(251, 247, 239, 0.15);
  border-bottom: 1px solid rgba(251, 247, 239, 0.15);
  padding: 1.4rem 0;
  margin-bottom: 2rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.emergency-strip b {
  color: var(--gold-light);
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Sub-page hero (travel-info) ---------- */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(62, 16, 18, 0.5), rgba(62, 16, 18, 0.85)), linear-gradient(120deg, #3E1012, #5C1A1B 55%, #1F3B2C 140%);
  color: var(--ivory);
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(217, 184, 114, 0.05) 0 1px, transparent 1px 60px);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 247, 239, 0.7);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--gold-light);
}

.page-hero h1 {
  color: var(--ivory);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

/* ---------- How-to-reach icons ---------- */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reach-card {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
}

.reach-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  font-family: "Cormorant", serif;
  font-size: 1.4rem;
  color: var(--maroon);
}

.reach-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.reach-card ul {
  list-style: none;
  margin-top: 0.8rem;
}

.reach-card li {
  font-size: 0.88rem;
  color: #5a4d46;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.reach-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.transport-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.transport-chip {
  text-align: center;
  padding: 1.6rem 1rem;
  border: 1px dashed var(--gold-light);
  border-radius: 6px;
}

.transport-chip .ti {
  font-family: "Cormorant", serif;
  font-size: 1.6rem;
  color: var(--maroon);
  margin-bottom: 0.4rem;
}

.transport-chip p {
  font-size: 0.8rem;
  color: #5a4d46;
}

/* ---------- Tabs (Visitor Services) ---------- */
.tabs-nav {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--gold-light);
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.9rem 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a6b62;
  position: relative;
  top: 1px;
}

.tab-btn.active {
  color: var(--maroon);
  border-bottom: 2px solid var(--gold);
  font-weight: 500;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hotel-card {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hotel-card .photo-block {
  height: 180px;
}

.hotel-card .hb {
  padding: 1.2rem 1.3rem;
}

.hotel-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.price-tag {
  font-family: "Cormorant", serif;
  color: var(--gold);
  font-weight: 600;
}

.hotel-stars {
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.package-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.package-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1.6rem;
  align-items: center;
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
}

.package-days {
  text-align: center;
  font-family: "Cormorant", serif;
  color: var(--maroon);
  border-right: 1px solid var(--gold-light);
}

.package-days .n {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.package-days .u {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-row h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.package-row p {
  font-size: 0.85rem;
  color: #5a4d46;
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.emergency-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow);
  border-radius: 2px;
}

.emergency-card .name {
  font-size: 0.92rem;
  font-weight: 500;
}

.emergency-card .sub {
  font-size: 0.76rem;
  color: #8a7a70;
}

.emergency-card .num {
  font-family: "Cormorant", serif;
  font-size: 1.3rem;
  color: var(--maroon);
  font-weight: 700;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.tip-card {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  padding: 1.6rem;
}

.tip-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tip-card p {
  font-size: 0.86rem;
  color: #5a4d46;
}

.map-placeholder {
  height: 460px;
  border-radius: 8px;
  border: 1px solid var(--gold-light);
  background: linear-gradient(rgba(92, 26, 27, 0.06), rgba(92, 26, 27, 0.06)), repeating-linear-gradient(0deg, rgba(184, 135, 61, 0.09) 0 1px, transparent 1px 42px), repeating-linear-gradient(90deg, rgba(184, 135, 61, 0.09) 0 1px, transparent 1px 42px), var(--sand);
  position: relative;
  overflow: hidden;
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--maroon);
  border: 2px solid var(--gold-light);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-pin::after {
  content: attr(data-label);
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  font-family: "Cormorant", serif;
  font-size: 0.78rem;
  white-space: nowrap;
  color: var(--maroon-deep);
  font-weight: 600;
}

.map-note {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: rgba(251, 247, 239, 0.92);
  padding: 0.7rem 1rem;
  border-radius: 4px;
  font-size: 0.78rem;
  color: #5a4d46;
  max-width: 260px;
}

/* ---------- Scroll reveal ----------
   Fails safe: .reveal is visible by default. It is only hidden pre-animation
   when JS has run and added "has-js" to <html> (see inline script in top.php).
   If script.js fails to load for any reason, content still shows. */
.reveal {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

html.has-js .reveal {
  opacity: 0;
  transform: translateY(26px);
}

html.has-js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .food-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reach-grid {
    grid-template-columns: 1fr;
  }
  .transport-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .emergency-grid, .tips-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .shop-card.feature .photo-block {
    height: 260px;
  }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 6.5rem 2.2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav a {
    color: var(--ink);
    font-size: 0.95rem;
  }
  .lang-toggle {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    border-top: 1px solid rgba(42, 35, 32, 0.15);
    padding-top: 1.2rem;
    margin-top: 0.6rem;
  }
  .nav-toggle {
    display: block;
  }
  .site-header .logo {
    color: var(--ivory);
  }
  .site-header.scrolled .logo {
    color: var(--maroon-deep);
  }
  .attractions-grid, .food-grid, .events-grid, .blog-grid, .footer-grid, .gallery-grid, .hotel-grid, .transport-row {
    grid-template-columns: 1fr;
  }
  .intro-strip .container {
    gap: 1.5rem;
  }
  .package-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .package-days {
    border-right: none;
    border-bottom: 1px solid var(--gold-light);
    padding-bottom: 0.8rem;
  }
  .hero-arch {
    display: none;
  }
  section {
    padding: 4.5rem 0;
  }
}

/*# sourceMappingURL=master.css.map */
