/* ==========================================================
   Sanand.in – Main Stylesheet
   Clean, modern travel website with neutral palette
   ========================================================== */

/* ── Google Fonts (self-hosted via CSS @import is external;
      we embed only system-safe stack + a webfont loaded
      via <link> in HTML from fonts.googleapis.com — but
      per requirement "No external CDN links for images/
      javascript/css" we use a system font stack only) ── */

/* ── CSS Reset / Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette */
  --clr-white:      #ffffff;
  --clr-off-white:  #f8f6f2;
  --clr-sand:       #f2ede3;
  --clr-sand-mid:   #e8e0d0;
  --clr-stone:      #d4c9b0;
  --clr-muted:      #a09880;
  --clr-text:       #2c2a26;
  --clr-text-light: #5a5650;
  --clr-primary:    #c17a2a;   /* warm saffron-gold */
  --clr-primary-dk: #9e601a;
  --clr-accent:     #2a6e52;   /* deep Gujarat green */
  --clr-accent-lt:  #3d9970;
  --clr-border:     #e0d8c8;

  /* Typography */
  --font-body: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;

  /* Spacing */
  --container: 1180px;
  --section-pad: 5rem 1.5rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);

  /* Transitions */
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background-color: var(--clr-off-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover, a:focus {
  color: var(--clr-primary-dk);
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

/* ── Utility ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

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

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
}

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.btn-primary:hover {
  background: var(--clr-primary-dk);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--clr-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: .75rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--clr-text);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-light);
  max-width: 620px;
}

.section-subtitle.center {
  margin: 0 auto;
}

/* ── Header / Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--clr-text);
}

.logo-tagline {
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.site-logo:hover { text-decoration: none; }

/* Desktop nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--clr-text-light);
  letter-spacing: .02em;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--clr-primary);
  border-bottom-color: var(--clr-primary);
  text-decoration: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  padding: 1rem 1.5rem;
  gap: .5rem;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  padding: .6rem 0;
  border-bottom: 1px solid var(--clr-border);
  text-decoration: none;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--clr-primary); }
.mobile-nav.open { display: flex; }

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-text);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,25,15,.65) 0%, rgba(30,25,15,.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 3rem 0;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(193,122,42,.4);
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--clr-white);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-desc {
  color: rgba(255,255,255,.88);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

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

.hero-scroll {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2.5rem;
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,.5);
}

/* ── Intro / Welcome ── */
.section-welcome {
  padding: var(--section-pad);
  background: var(--clr-white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.welcome-image-wrap {
  position: relative;
}

.welcome-image-wrap img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.welcome-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--clr-primary);
  color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 130px;
}

.welcome-badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.welcome-badge-label {
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
}

/* ── Highlights / Feature Grid ── */
.section-highlights {
  padding: var(--section-pad);
  background: var(--clr-off-white);
}

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

.highlight-card {
  background: var(--clr-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.highlight-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.highlight-card-body {
  padding: 1.5rem;
}

.highlight-card-body h3 {
  margin-bottom: .5rem;
  font-size: 1.2rem;
}

.highlight-card-body p {
  color: var(--clr-text-light);
  font-size: .92rem;
}

.highlight-card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .75rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--clr-primary);
  text-decoration: none;
}

.highlight-card-link::after { content: '→'; }
.highlight-card-link:hover { text-decoration: underline; }

/* ── Stats Bar ── */
.section-stats {
  background: var(--clr-primary);
  padding: 3rem 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: var(--clr-white);
}

.stat-num {
  display: block;
  font-size: 2.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .35rem;
}

.stat-label {
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
}

/* ── Why Visit ── */
.section-why {
  padding: var(--section-pad);
  background: var(--clr-sand);
}

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

.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--clr-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.why-item:hover { box-shadow: var(--shadow-md); }

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--clr-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.why-item h4 { margin-bottom: .4rem; }
.why-item p  { color: var(--clr-text-light); font-size: .92rem; margin: 0; }

/* ── Section Image Banner ── */
.section-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,16,8,.72) 0%, rgba(20,16,8,.25) 100%);
  display: flex;
  align-items: center;
}

.banner-text {
  max-width: 520px;
  padding: 2rem 3rem;
  color: var(--clr-white);
}

.banner-text h2 {
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.banner-text p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
}

/* ── Attractions Grid ── */
.section-attractions {
  padding: var(--section-pad);
  background: var(--clr-white);
}

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

.attraction-card {
  background: var(--clr-off-white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.attraction-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.attraction-card-body {
  padding: 1.75rem;
}

.attraction-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(42,110,82,.08);
  padding: .25rem .6rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.attraction-card-body h3 { margin-bottom: .6rem; }
.attraction-card-body p { color: var(--clr-text-light); font-size: .93rem; }

/* ── Guide / Info Sections ── */
.section-guide {
  padding: var(--section-pad);
  background: var(--clr-off-white);
}

.guide-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.guide-main h3 {
  margin-top: 2rem;
  margin-bottom: .75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
}

.guide-main h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.guide-main ul, .guide-main ol {
  margin: .5rem 0 1rem 1.5rem;
  list-style: disc;
}

.guide-main ol { list-style: decimal; }

.guide-main li {
  color: var(--clr-text-light);
  margin-bottom: .4rem;
  font-size: .95rem;
}

/* Sidebar */
.guide-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--clr-white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--clr-primary);
}

.sidebar-card h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--clr-primary);
}

.sidebar-card ul {
  list-style: none;
  margin: 0;
}

.sidebar-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .45rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: .88rem;
}

.sidebar-card li:last-child { border-bottom: none; }

.sidebar-card li strong { color: var(--clr-text); }
.sidebar-card li span   { color: var(--clr-text-light); font-size: .85rem; }

/* ── Info Box / Tip Box ── */
.info-box {
  background: rgba(193,122,42,.08);
  border: 1px solid rgba(193,122,42,.25);
  border-left: 4px solid var(--clr-primary);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .93rem;
  color: var(--clr-text-light);
}

.info-box strong { color: var(--clr-primary); }

/* ── Image + Text Row ── */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: var(--section-pad);
}

.content-row.reverse { direction: rtl; }
.content-row.reverse > * { direction: ltr; }

.content-row img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
  object-fit: cover;
}

.content-row.bg-white   { background: var(--clr-white); }
.content-row.bg-sand    { background: var(--clr-sand); }

/* ── FAQ Accordion ── */
.section-faq {
  padding: var(--section-pad);
  background: var(--clr-white);
}

.faq-list {
  max-width: 780px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  background: var(--clr-off-white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .97rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: background var(--transition);
  gap: 1rem;
}

.faq-question:hover { background: var(--clr-sand); }
.faq-question.open  { background: var(--clr-sand); color: var(--clr-primary); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--clr-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: transform var(--transition);
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 1.1rem 1.5rem;
  font-size: .93rem;
  color: var(--clr-text-light);
  border-top: 1px solid var(--clr-border);
  background: var(--clr-white);
  line-height: 1.7;
}

.faq-answer.open { display: block; }

/* ── Breadcrumb ── */
.breadcrumb-bar {
  background: var(--clr-sand);
  border-bottom: 1px solid var(--clr-stone);
  padding: .75rem 1.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
}

.breadcrumb a {
  color: var(--clr-text-light);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--clr-primary); }

.breadcrumb-sep {
  color: var(--clr-muted);
  font-size: .75rem;
}

.breadcrumb-current {
  color: var(--clr-primary);
  font-weight: 600;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--clr-text);
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .55;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,8,.8) 0%, rgba(20,16,8,.2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.page-hero-content .section-tag { color: var(--clr-primary); }

.page-hero-content h1 {
  color: var(--clr-white);
  max-width: 640px;
}

.page-hero-content p {
  color: rgba(255,255,255,.85);
  max-width: 520px;
  font-size: 1.05rem;
  margin-top: .75rem;
  margin-bottom: 0;
}

/* ── Two-column long-form text layout ── */
.section-longform {
  padding: var(--section-pad);
}

.section-longform.bg-white   { background: var(--clr-white); }
.section-longform.bg-offwhite { background: var(--clr-off-white); }
.section-longform.bg-sand     { background: var(--clr-sand); }

.longform-inner {
  max-width: 820px;
  margin: 0 auto;
}

.longform-inner h2 { margin-bottom: 1.25rem; }
.longform-inner h3 { margin: 2rem 0 .8rem; color: var(--clr-primary); }

.longform-inner ul {
  margin: .5rem 0 1.25rem 1.5rem;
  list-style: disc;
}

.longform-inner ol {
  margin: .5rem 0 1.25rem 1.5rem;
  list-style: decimal;
}

.longform-inner li {
  margin-bottom: .4rem;
  color: var(--clr-text-light);
}

.longform-inner img {
  width: 100%;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

/* ── Highlight list (tick marks) ── */
.tick-list {
  list-style: none !important;
  margin-left: 0 !important;
}

.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .3rem 0;
}

.tick-list li::before {
  content: '✓';
  color: var(--clr-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ── Table ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .91rem;
  margin: 1rem 0 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table th {
  background: var(--clr-primary);
  color: #fff;
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
}

.data-table td {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text-light);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--clr-off-white); }

/* ── Footer ── */
#site-footer {
  background: #1a1612;
  color: rgba(255,255,255,.75);
}

.footer-top {
  padding: 4rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand .logo-name { color: var(--clr-white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,.45); }

.footer-brand p {
  margin-top: 1rem;
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 280px;
}

.footer-col h5 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }

.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--clr-primary);
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .6rem;
  font-size: .87rem;
  color: rgba(255,255,255,.6);
}

.footer-contact-icon {
  font-size: 1rem;
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: .1rem;
}

/* Cookie notice */
.footer-cookie {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .9rem 1.5rem;
  font-size: .79rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
  line-height: 1.55;
}

.footer-cookie a {
  color: rgba(193,122,42,.8);
  text-decoration: underline;
}

/* Footer bottom bar */
.footer-bottom {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom a {
  color: rgba(193,122,42,.75);
}

.footer-bottom a:hover {
  color: var(--clr-primary);
  text-decoration: none;
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .welcome-grid,
  .guide-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .welcome-badge {
    bottom: -1rem;
    right: .5rem;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1rem; }

  .primary-nav { display: none; }
  .nav-toggle   { display: flex; }

  .hero { min-height: 80vh; }

  .highlights-grid,
  .why-grid,
  .attractions-grid,
  .content-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .content-row.reverse { direction: ltr; }

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

  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .banner-text { padding: 1.5rem; }

  .page-hero { min-height: 42vh; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal-links { flex-direction: column; gap: .5rem; }
}

/* ── Email reveal button ── */
.email-reveal-btn {
  background: none;
  border: 1px solid rgba(193,122,42,.55);
  color: rgba(193,122,42,.9);
  border-radius: 4px;
  padding: .25rem .65rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.email-reveal-btn:hover,
.email-reveal-btn:focus-visible {
  background: rgba(193,122,42,.12);
  color: var(--clr-primary);
  border-color: var(--clr-primary);
  outline: none;
}

/* ── Print ── */
@media print {
  .site-header, .nav-toggle, .mobile-nav, #site-footer, .hero-cta { display: none; }
  body { color: #000; background: #fff; }
}
