/* =====================================================
   RK EVENT — MAIN STYLESHEET
   Organization: Reset → Variables → Layout → 
   Navigation → Hero → Cards → Sections → 
   Forms → Footer → WhatsApp → Animations → Responsive
   ===================================================== */

/* --- 1. RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* --- 2. DESIGN TOKENS --- */
:root {
  /* Colors */
  --color-primary:    #0A1628;
  --color-accent:     #C9A84C;
  --color-accent-light: #e8c97a;
  --color-bg:         #FFFFFF;
  --color-surface:    #F7F5F0;
  --color-text:       #1A1A2E;
  --color-text-muted: #5A5A7A;
  --color-white:      #FFFFFF;
  --color-overlay:    rgba(10, 22, 40, 0.62);
  --color-overlay-dark: rgba(10, 22, 40, 0.8);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes */
  --fs-hero:  clamp(2.8rem, 6vw, 4.5rem);
  --fs-h2:    clamp(2rem, 4vw, 3rem);
  --fs-h3:    clamp(1.4rem, 2.5vw, 2rem);
  --fs-body:  1rem;
  --fs-sm:    0.875rem;
  --fs-xs:    0.75rem;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;
  --section-pad: 100px;

  /* Border radius */
  --radius-sm:   4px;
  --radius-card: 12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg:  0 20px 60px rgba(10,22,40,0.18);

  /* Transitions */
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;

  /* Z-index */
  --z-header: 1000;
  --z-float:  1050;
  --z-modal:  2000;
}

/* --- 3. TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-primary);
  font-weight: 600;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { margin-bottom: var(--space-sm); color: var(--color-text-muted); }

/* --- 4. LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}
.container-narrow {
  max-width: 780px;
}
.section {
  padding-block: var(--section-pad);
}
.bg-surface  { background: var(--color-surface); }
.bg-primary  { background: var(--color-primary); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.text-white  { color: var(--color-white) !important; }
.text-white-muted { color: rgba(255,255,255,0.75) !important; }

/* --- 5. BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--transition-fast), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}
.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--color-white);
}
.btn-gold {
  background: var(--color-accent);
  color: var(--color-primary);
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }
.btn-call {
  background: var(--color-accent);
  color: var(--color-primary) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--fs-sm);
}
.btn-call:hover { background: var(--color-accent-light); }

/* --- 6. HEADER --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding-block: 20px;
}
.site-header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding-block: 12px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.01em;
}
.site-logo .logo-icon { color: var(--color-accent); font-size: 1.4rem; }
.site-logo em { color: var(--color-accent); font-style: italic; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--color-white); margin-bottom: var(--space-sm); }
.footer-logo .logo-icon { color: var(--color-accent); }
.footer-logo em { color: var(--color-accent); font-style: italic; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
  background: rgba(201,168,76,0.1);
}
.header-actions { display: flex; align-items: center; gap: var(--space-sm); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--color-primary);
  padding: var(--space-md);
  border-top: 1px solid rgba(201,168,76,0.2);
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-link:hover { background: rgba(201,168,76,0.15); color: var(--color-accent); }
.mobile-call-btn { margin-top: var(--space-sm); width: 100%; justify-content: center; }

/* --- 7. HOMEPAGE HERO --- */
.homepage-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* scale(1.08) removed — caused overflow bleed on mobile Safari */
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.85) 0%,
    rgba(10,22,40,0.5) 60%,
    rgba(10,22,40,0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;  /* prevent overflow on small screens */
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;  /* reduced from 0.2em — helps on narrow screens */
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-full);
  white-space: normal;  /* allow wrap on very small screens */
  max-width: 100%;
}
.hero-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--color-accent); font-style: italic; }
.hero-subtitle {
  font-size: 1.1rem;  /* slightly reduced from 1.15 */
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-lg);
  max-width: 540px;
  width: 100%;  /* prevent overflow */
}
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 2;
  display: flex;
  gap: var(--space-lg);
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* --- 8. INNER HERO --- */
.inner-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  margin-top: 0;
  overflow: hidden;
}
.inner-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* scale(1.1) removed — overflow:hidden on parent handles cropping */
  will-change: transform;
}
.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.4) 60%, rgba(10,22,40,0.2) 100%);
}
.inner-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.inner-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.inner-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-md);
  max-width: 600px;
}
.inner-hero__actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.4; }
}

/* Breadcrumbs */
.breadcrumb-nav { margin-bottom: var(--space-sm); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}
.breadcrumb-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.breadcrumb-item a:hover { color: var(--color-accent); }
.breadcrumb-item + .breadcrumb-item::before { content: '›'; color: rgba(255,255,255,0.4); }
.breadcrumb-item.active { color: var(--color-accent); }

/* --- 9. SECTION HEADERS --- */
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header--left { text-align: left; }
.section-header--light { color: var(--color-white); }
.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}
.section-label--gold { color: var(--color-accent); }
.section-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.section-header--light .section-title { color: var(--color-white); }
.section-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-inline: auto;
}
.section-subtitle {
  font-size: 1rem;
  margin-top: var(--space-xs);
}

/* --- 10. CARDS --- */
.cards-grid {
  display: grid;
  gap: var(--space-md);
}
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-image {
  overflow: hidden;
  aspect-ratio: 16/10;
  flex-shrink: 0;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-image img { transform: scale(1.05); }
.card-body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}
.card-desc { font-size: var(--fs-sm); color: var(--color-text-muted); flex: 1; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-accent);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-top: var(--space-sm);
  transition: gap var(--transition);
}
.card-link:hover { gap: 8px; }

/* --- 11. CATEGORY GRID (Homepage) --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
.category-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
}
.category-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.category-card:hover .category-card__bg { transform: scale(1.08); }
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.1) 60%);
  transition: background var(--transition);
}
.category-card:hover .category-card__overlay { background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.3) 60%); }
.category-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-md);
  color: var(--color-white);
}
.category-card__icon { font-size: 1.8rem; margin-bottom: 6px; }
.category-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.category-card__cta {
  font-size: var(--fs-xs);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.category-card:hover .category-card__cta { opacity: 1; transform: translateY(0); }

/* --- 12. STATS BAR --- */
.stats-bar {
  padding-block: var(--space-xl);
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; padding: var(--space-md); }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  display: block;
}

/* --- 13. GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-card);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
/* Masonry-style for homepage */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--space-sm);
}
.gallery-masonry .gallery-item:first-child { grid-row: span 2; }
.gallery-masonry .gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-masonry .gallery-item { aspect-ratio: unset; height: 100%; }

/* --- 14. TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.testimonial-card {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--color-accent); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-text { font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: var(--space-sm); font-style: italic; }
.testimonial-author strong { display: block; color: var(--color-primary); font-weight: 600; }
.testimonial-author span { font-size: var(--fs-xs); color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.05em; }

/* --- 15. HIGHLIGHTS GRID (Event pages) --- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.highlight-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.highlight-icon { font-size: 2.4rem; margin-bottom: var(--space-sm); }
.highlight-title { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-primary); margin-bottom: 8px; }
.highlight-desc { font-size: var(--fs-sm); color: var(--color-text-muted); }

/* --- 16. PACKAGES (Event pages) --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}
.package-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package-card--featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.package-name { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-primary); font-weight: 600; margin-bottom: 8px; }
.package-price { font-size: 1.8rem; font-weight: 700; color: var(--color-accent); margin-bottom: var(--space-md); }
.package-features { text-align: left; margin-bottom: var(--space-md); }
.package-features li {
  padding: 8px 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-surface);
  position: relative;
  padding-left: 20px;
}
.package-features li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }

/* --- 17. FAQ ACCORDION --- */
.faq-accordion { display: flex; flex-direction: column; gap: var(--space-xs); }
.faq-item {
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md);
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 600;
  background: transparent;
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: var(--color-surface); }
.faq-question[aria-expanded="true"] { color: var(--color-accent); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--color-accent);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-answer.open {
  max-height: 600px;
  padding: 0 var(--space-md) var(--space-md);
}
.faq-answer p { color: var(--color-text-muted); font-size: var(--fs-sm); }

/* --- 18. SERVICE INTRO --- */
.service-intro-grid, .venue-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.service-intro-image img, .venue-intro-image img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* --- 19. RICH CONTENT --- */
.rich-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}
.rich-content h2 { font-size: 1.8rem; color: var(--color-primary); margin: var(--space-lg) 0 var(--space-sm); }
.rich-content h2:first-child { margin-top: 0; }
.rich-content h3 { font-size: 1.3rem; color: var(--color-primary); margin: var(--space-md) 0 var(--space-xs); }
.rich-content h4 { font-size: 1.05rem; color: var(--color-primary); margin: var(--space-sm) 0 4px; font-weight: 600; }
.rich-content p { margin-bottom: var(--space-sm); }
.rich-content ul, .rich-content ol { padding-left: var(--space-md); margin-bottom: var(--space-sm); }
.rich-content li { margin-bottom: 6px; padding-left: 4px; }
.rich-content strong { color: var(--color-primary); font-weight: 600; }

/* --- 20. BLOG LAYOUT --- */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  align-items: start;
}
.article-header { margin-bottom: var(--space-lg); }
.article-category {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--color-accent);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}
.article-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.article-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.article-hero-image { border-radius: var(--radius-card); overflow: hidden; margin-bottom: var(--space-lg); }
.article-hero-image img { width: 100%; height: 420px; object-fit: cover; }
.article-body { margin-bottom: var(--space-lg); }
.article-tags { display: flex; gap: var(--space-xs); flex-wrap: wrap; margin-bottom: var(--space-md); }
.tag {
  padding: 4px 12px;
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  border-radius: var(--radius-full);
  font-weight: 500;
}
.article-share {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-card);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.share-label { font-size: var(--fs-sm); font-weight: 600; color: var(--color-primary); }
.share-btn {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: opacity var(--transition);
}
.share-btn:hover { opacity: 0.85; }
.share-whatsapp { background: #25D366; color: white; }
.share-facebook { background: #1877F2; color: white; }
.author-bio {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-card);
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.6rem;
  flex-shrink: 0;
}
.author-name { color: var(--color-primary); font-weight: 700; font-size: 1rem; }
.author-desc { font-size: var(--fs-sm); color: var(--color-text-muted); margin-top: 4px; }

/* Sidebar */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}
.sidebar-title { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-primary); margin-bottom: var(--space-sm); }
.sidebar-desc { font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.sidebar-posts { display: flex; flex-direction: column; gap: 12px; }
.sidebar-post {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.sidebar-post img { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.sidebar-post a { font-size: var(--fs-sm); color: var(--color-primary); font-weight: 500; transition: color var(--transition); }
.sidebar-post a:hover { color: var(--color-accent); }

/* --- 21. AMENITIES TABLE (Venue pages) --- */
.amenities-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}
.amenities-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 0.95rem;
}
.amenities-table th, .amenities-table td {
  padding: 14px var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-surface);
}
.amenities-table th {
  background: var(--color-surface);
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--font-heading);
  white-space: nowrap;
  width: 200px;
}
.amenities-table td { color: var(--color-text-muted); }
.amenities-table tr:last-child th, .amenities-table tr:last-child td { border-bottom: none; }
.amenities-table tr:hover td { background: var(--color-surface); }

/* --- 22. INQUIRY FORM --- */
.inquiry-form { margin-top: var(--space-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}
.form-control {
  padding: 14px var(--space-sm);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  backdrop-filter: blur(4px);
}
.form-control::placeholder { color: rgba(255,255,255,0.4); }
.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.12);
}
.form-control option { background: var(--color-primary); color: var(--color-white); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-feedback {
  margin-top: var(--space-sm);
  padding: 12px var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  display: none;
}
.form-feedback.success { background: rgba(39,174,96,0.2); color: #2ecc71; display: block; }
.form-feedback.error { background: rgba(231,76,60,0.2); color: #e74c3c; display: block; }

/* --- 23. MAP --- */
.map-embed {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* --- 24. FOOTER --- */
.site-footer { background: var(--color-primary); color: rgba(255,255,255,0.8); }
.footer-top { padding-block: var(--space-xl); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
}
.footer-tagline { font-size: var(--fs-sm); margin-bottom: var(--space-md); line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--color-accent); color: var(--color-primary); }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-md);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--color-accent); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-sm); color: rgba(255,255,255,0.75); }
.contact-item a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.contact-item a:hover { color: var(--color-accent); }
.contact-icon { flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  padding-block: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; width: 100%; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,0.5); margin: 0; }
.footer-legal { color: rgba(255,255,255,0.3) !important; }

/* --- 25. ERROR PAGE --- */
.error-page {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.error-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.error-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.85);
}
.error-content { position: relative; z-index: 2; color: var(--color-white); }
.error-code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.error-title { font-size: 2.5rem; color: var(--color-white); margin-bottom: var(--space-sm); }
.error-message { color: rgba(255,255,255,0.75); margin-bottom: var(--space-lg); font-size: 1.05rem; }
.error-actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

/* --- 26. FLOATING BUTTONS (bottom-right stack) --- */

/* Wrapper that stacks call + WhatsApp vertically */
.float-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-float);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Floating Call Button (gold) */
.call-float {
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: callPulse 2.8s ease-in-out infinite;
}
.call-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(201,168,76,0.6);
  animation: none;
}
@keyframes callPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(201,168,76,0.45); }
  50%       { box-shadow: 0 6px 28px rgba(201,168,76,0.75); }
}

/* Floating WhatsApp Button (green) */
.whatsapp-float {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: visible;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.65); }

.whatsapp-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: whatsappRing 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes whatsappRing {
  0%   { transform: scale(1);    opacity: 1; }
  80%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* --- 27. HOMEPAGE SECTIONS --- */
.section-service-intro { padding-top: var(--space-lg); }
.section-event-intro .section-intro { margin-left: auto; margin-right: auto; }
.section-venue-intro { padding-top: var(--space-lg); }

/* Quick Inquiry Form on Homepage */
.home-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.home-contact-info { color: rgba(255,255,255,0.85); }
.home-contact-info .section-title { color: var(--color-white); }
.contact-detail { display: flex; gap: 12px; font-size: var(--fs-sm); margin-bottom: var(--space-sm); }
.contact-detail-icon { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

/* --- 28. GENERAL HELPERS --- */
.parallax-bg { background-attachment: fixed; }
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- 29. RESPONSIVE --- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .hero-stats { display: none; }
}

@media (max-width: 900px) {
  :root { --section-pad: 70px; }
  .site-header { padding-block: 14px; }
  .site-header.scrolled { padding-block: 8px; }
  #header-call-btn { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .cards-grid--3, .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { aspect-ratio: 3/2; }  /* shorter on tablet */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-masonry .gallery-item:first-child { grid-row: span 1; }
  .gallery-masonry .gallery-item:nth-child(4) { grid-column: span 1; }
  .service-intro-grid, .venue-intro-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .home-contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  /* Disable parallax fixed on tablets */
  .parallax-bg { background-attachment: scroll !important; }
  .inner-hero__bg { transform: none !important; background-attachment: scroll; }
}

@media (max-width: 600px) {
  :root { --section-pad: 52px; }
  /* Category — 2 columns, much shorter cards */
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { aspect-ratio: 1/1; }  /* square on mobile */
  /* Cards — single column */
  .cards-grid--3, .cards-grid--4 { grid-template-columns: 1fr; }
  /* Testimonials scroll row instead of stack */
  .testimonials-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: var(--space-sm);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  /* Stats 2-col tighter */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xs); }
  .stat-item { padding: var(--space-sm); }
  /* Gallery — 2 col simple grid on mobile */
  .gallery-masonry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 8px;
  }
  .gallery-masonry .gallery-item:first-child { grid-row: span 1; grid-column: span 2; }
  .gallery-masonry .gallery-item:nth-child(4) { grid-column: span 1; }
  /* Highlights grid */
  .highlights-grid { grid-template-columns: 1fr; }
  /* Hero actions stack */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .inner-hero__actions { flex-direction: column; }
  .inner-hero__actions .btn { justify-content: center; }
  /* Float group — tighten on small screens */
  .float-group { bottom: 20px; right: 16px; gap: 10px; }
  .call-float  { width: 50px; height: 50px; }
  .whatsapp-float { width: 54px; height: 54px; }
  /* 404 */
  .error-code { font-size: 5rem; }
  /* Section headers tighter */
  .section-header { margin-bottom: var(--space-lg); }
  /* Container padding */
  .container { padding-inline: var(--space-sm); }
  /* Blog layout */
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  /* Form */
  .form-row { grid-template-columns: 1fr; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  /* Disable parallax / fixed BG on mobile — iOS Safari bug */
  .parallax-bg { background-attachment: scroll !important; }
  .hero-bg { transform: none !important; background-attachment: scroll !important; }
  .inner-hero__bg { transform: none !important; background-attachment: scroll !important; }
}

/* --- 30. ARCHIVE PAGES --- */

/* Count bar */
.archive-count-bar {
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.archive-count-text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin: 0;
}
.archive-count-text strong { color: var(--color-primary); }

/* Archive section spacing */
.archive-section { padding-top: var(--space-lg); }

/* Blog archive grid */
.archive-blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}
.archive-blog-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-md);
  align-items: start;
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.archive-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.archive-blog-card__image { display: block; overflow: hidden; height: 100%; min-height: 200px; }
.archive-blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.archive-blog-card:hover .archive-blog-card__image img { transform: scale(1.04); }
.archive-blog-card__body {
  padding: var(--space-md) var(--space-md) var(--space-md) 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.archive-blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.archive-blog-card__title a { color: var(--color-primary); transition: color var(--transition); }
.archive-blog-card__title a:hover { color: var(--color-accent); }
.archive-blog-card__desc { font-size: var(--fs-sm); color: var(--color-text-muted); flex: 1; margin-bottom: var(--space-sm); }
.archive-blog-card__meta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

/* Location icon */
.location-icon { font-size: 1.4rem; margin-bottom: 4px; }

/* Venue badges */
.venue-meta-badge {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin: 2px 0 0;
}

/* Archive CTA */
.archive-cta {
  position: relative;
  overflow: hidden;
}
.archive-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Archive responsive */
@media (max-width: 900px) {
  .archive-blog-grid { grid-template-columns: 1fr; }
  .archive-blog-card { grid-template-columns: 1fr; }
  .archive-blog-card__image { min-height: 220px; }
  .archive-blog-card__body { padding: var(--space-md); }
}
@media (max-width: 600px) {
  .archive-blog-card { display: block; }
  .archive-blog-card__image { height: 200px; min-height: unset; }
}

/* =====================================================
   31. SITEMAP PAGE (/sitemap)
   ===================================================== */

/* ── Hero ── */
.sitemap-hero {
  position: relative;
  background: var(--color-primary);
  padding: 140px 0 80px;
  overflow: hidden;
}
.sitemap-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.sitemap-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.6) 0%, transparent 100%);
}
.sitemap-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.sitemap-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}
.sitemap-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}

/* ── Group ── */
.sitemap-group {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-surface);
}
.sitemap-group:last-of-type { border-bottom: none; }

/* ── Heading ── */
.sitemap-heading {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}
.sitemap-heading__icon {
  font-size: 1.2rem;
}
.sitemap-count {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* ── List ── */
.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-list li {
  border-bottom: 1px solid rgba(90,90,122,0.1);
}
.sitemap-list li:last-child { border-bottom: none; }

/* ── Link ── */
.sitemap-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 4px;
  color: var(--color-text);
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: color var(--transition), padding-left var(--transition);
}
.sitemap-link:hover {
  color: var(--color-accent);
  padding-left: 6px;
}
.sitemap-link__arrow {
  color: var(--color-accent);
  font-style: normal;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.sitemap-link:hover .sitemap-link__arrow {
  transform: translateX(4px);
}

/* ── Grid layout for long lists ── */
.sitemap-list--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--space-lg);
}
.sitemap-list--grid li {
  border-bottom: 1px solid rgba(90,90,122,0.1);
}

/* ── CTA block ── */
.sitemap-cta {
  margin-top: var(--space-xl);
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  text-align: center;
}
.sitemap-cta p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.sitemap-cta .btn { margin: 0 6px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .sitemap-list--grid { grid-template-columns: repeat(2, 1fr); }
  .sitemap-hero { padding: 120px 0 60px; }
}
@media (max-width: 600px) {
  .sitemap-list--grid { grid-template-columns: 1fr; }
  .sitemap-hero { padding: 100px 0 48px; }
  .sitemap-heading { font-size: 1.3rem; }
  .sitemap-cta { padding: var(--space-lg) var(--space-md); }
  .sitemap-cta .btn { display: block; width: 100%; margin: 0 0 var(--space-sm); }
}
