/* ==========================================================================
   ATHAM EVENT MANAGEMENT - Bespoke Luxury Brand Styling
   Palette: Royal Espresso (#200E08), Radiant Gold (#D89B28), Champagne Cream (#FAF5EC)
   Typography: Playfair Display (headings), Poppins (body/UI)
   ========================================================================== */

/* Primary Brand Typography - Playfair Display is loaded via Google Fonts */


:root {
  /* Brand Color Palette */
  --espresso-deep: #160804;
  --espresso-rich: #251009;
  --espresso-card: #34180E;
  --espresso-surface: #422014;

  --gold-primary: #D89B28;
  --gold-light: #F0C468;
  --gold-bright: #F7D58B;
  --gold-deep: #B57D18;
  --gold-subtle: rgba(216, 155, 40, 0.12);
  --gold-border: rgba(216, 155, 40, 0.35);

  --cream-bg: #FAF5EC;
  --cream-card: #F3EBDD;
  --cream-card-hover: #ECE2D0;
  --cream-border: rgba(46, 21, 13, 0.12);

  --text-dark: #220E07;
  --text-muted: #665046;
  --text-light: #FFFDF9;
  --text-light-muted: #D3C3B8;

  /* Typography System */
  --font-primary: 'Playfair Display', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Alex Brush', cursive;

  /* ── Unified Type Scale ──────────────────────────────────────────────── */
  /* Section headings (h2) */
  --fs-section-h2: clamp(2.8rem, 4.4vw, 4.2rem);
  /* Card / panel headings (h3) */
  --fs-card-h3: clamp(1.8rem, 2.5vw, 2.2rem);
  /* Card sub-headings (h3 inside service cards) */
  --fs-card-title: 1.65rem;
  /* Destination / gallery card headings */
  --fs-dest-h3: 1.85rem;
  /* Body paragraph */
  --fs-body: 1rem;
  /* Small body / descriptions */
  --fs-body-sm: 0.9rem;
  /* CTA links & button text */
  --fs-cta: 0.85rem;
  /* Uppercase labels, tags, navigation */
  --fs-label: 0.75rem;
  /* Fine print / micro text */
  --fs-micro: 0.7rem;

  /* Elevation (Clean flat borders preferred over fuzzy shadows) */
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: 0.35s cubic-bezier(0.25, 1, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background-color: var(--cream-bg);
  color: var(--text-dark);
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 500;
}

/* All non-heading text uses Poppins (inherits from body) */
p,
span,
li,
a,
label,
input,
select,
textarea,
blockquote,
.section-subtext,
.button,
.top-bar,
.desktop-nav a,
.mobile-nav a,
.footer-nav a,
.tag,
.badge,
.caption,
.stat-label,
.step-text,
.card-body {
  font-family: var(--font-secondary);
}

/* Material Symbols icon helper */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Common Text Accents */
.cursive-brand {
  font-family: var(--font-script);
  font-size: 1.45em;
  line-height: 1;
  color: var(--gold-primary);
  font-weight: 400;
  vertical-align: middle;
}

.section-pad {
  padding: 100px 5vw;
}

.section-header-centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.section-header-centered h2 {
  font: 500 clamp(2.8rem, 4.5vw, 4.2rem)/1.08 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.section-header-centered h2 em {
  font-style: italic;
  color: var(--gold-primary);
}

.section-subtext {
  font-size: var(--fs-body);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 30px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.button-gold {
  background: var(--gold-primary);
  color: var(--espresso-deep);
  border-color: var(--gold-primary);
  font-weight: 700;
}

.button-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: none;
}

.button-outline {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}

.full-w {
  width: 100%;
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--espresso-deep);
  color: var(--text-light-muted);
  font-size: var(--fs-label);
  letter-spacing: 0.04em;
  padding: 8px 5vw;
  border-bottom: 1px solid rgba(216, 155, 40, 0.2);
  width: 100%;
  overflow: hidden;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}

.top-bar-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar-tagline .cursive-brand {
  font-size: 1.3rem;
  color: var(--gold-light);
}

.top-bar-contacts {
  display: flex;
  gap: 22px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-link:hover {
  color: var(--gold-light);
}

.top-link .material-symbols-outlined {
  font-size: 0.95rem;
  color: var(--gold-primary);
}

/* ==========================================================================
   SITE HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 82px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 245, 236, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-border);
  transition: all var(--transition);
}

.site-header.is-scrolled {
  height: 72px;
  box-shadow: 0 10px 30px rgba(22, 8, 4, 0.08);
  background: rgba(250, 245, 236, 0.98);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 54px;
  width: auto;
  transition: transform var(--transition);
  border-radius: 4px;
}

.brand:hover img {
  transform: scale(1.04);
}

.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: var(--fs-cta);
  font-weight: 600;
  color: var(--text-dark);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: right var(--transition);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.whatsapp-btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.whatsapp-btn-header:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--espresso-rich);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(216, 155, 40, 0.4);
  transition: all var(--transition);
}

.header-cta:hover {
  background: var(--espresso-card);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.header-cta .material-symbols-outlined {
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--espresso-rich);
  margin: 5px 0;
  transition: all var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--cream-bg);
  z-index: 1000;
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--cream-border);
  padding-bottom: 20px;
}

.mobile-logo {
  height: 48px;
  width: auto;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--espresso-rich);
  cursor: pointer;
}

.mobile-tagline {
  margin: 20px 0 25px;
  text-align: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--espresso-rich);
  padding: 10px 0;
  border-bottom: 1px solid rgba(46, 21, 13, 0.07);
}

.mobile-link:hover {
  color: var(--gold-primary);
  padding-left: 8px;
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mobile-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   HERO SECTION: RESPONSIVE DUAL VIDEO BACKGROUND
   ========================================================================== */
.hero {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 680px;
  max-height: 920px;
  margin: 0 2vw 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--espresso-deep);
}

/* Desktop video is displayed by default on screens >= 801px */
.hero-video-desktop {
  display: block;
}

.hero-video-mobile {
  display: none;
}

/* Warm Vignette and Gradient Overlay */
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(22, 8, 4, 0.88) 0%,
      rgba(22, 8, 4, 0.65) 42%,
      rgba(22, 8, 4, 0.15) 75%),
    linear-gradient(0deg,
      rgba(22, 8, 4, 0.75) 0%,
      transparent 50%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding-left: 5vw;
}

.hero-crest {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-tagline-script {
  font-family: var(--font-script);
  font-size: 1.85rem;
  color: #fff;
}

.hero h1 {
  font: 500 clamp(3.4rem, 6.2vw, 5.8rem)/0.96 var(--font-display);
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: #FFFDF9;
}

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

.hero-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-badge-sep {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

/* Hero Video Controls Widget */
.hero-video-controls {
  position: absolute;
  z-index: 4;
  right: 3vw;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(22, 8, 4, 0.65);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(216, 155, 40, 0.3);
}

.video-ctrl-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.video-ctrl-btn:hover {
  background: var(--gold-primary);
  color: var(--espresso-deep);
  border-color: var(--gold-primary);
}

.ctrl-icon {
  font-family: 'Material Symbols Outlined';
  font-size: 1.1rem;
}

.video-status-text {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll-cue:hover {
  color: var(--gold-light);
}

.cue-text {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ==========================================================================
   SERVICES SECTION (The 8 Core Verticals) — Horizontal Carousel
   ========================================================================== */
.services-section {
  background: var(--cream-bg);
}

/* Hide the filter pill bar — carousel makes it redundant */
.services-nav-bar {
  display: none;
}

/* Carousel wrapper */
.services-carousel-wrap {
  position: relative;
}

/* Arrow buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(216, 155, 40, 0.45);
  background: var(--cream-bg);
  color: var(--espresso-rich);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(22, 8, 4, 0.12);
}

.carousel-arrow:hover {
  background: var(--espresso-rich);
  color: var(--gold-light);
  border-color: var(--espresso-rich);
}

.carousel-arrow-prev { left: -24px; }
.carousel-arrow-next { right: -24px; }

.carousel-arrow .material-symbols-outlined {
  font-size: 1.4rem;
}

/* Scrollable track */
.services-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 20px;
  cursor: grab;
  /* hide scrollbar */
  scrollbar-width: none;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

.services-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  /* Fixed card width for carousel */
  flex: 0 0 320px;
  width: 320px;
  scroll-snap-align: start;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 155, 40, 0.4);
  box-shadow: 0 12px 32px rgba(22, 8, 4, 0.1);
}

.service-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-media img {
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.25, 1);
}

.service-card:hover .service-card-media img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(22, 8, 4, 0.75);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(216, 155, 40, 0.3);
}

.service-card-body {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-header {
  margin-bottom: 12px;
}

.service-tag {
  font-size: var(--fs-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}

.service-card-header h3 {
  font: 500 var(--fs-card-title)/1.2 var(--font-display);
  color: var(--espresso-rich);
  margin-top: 4px;
}

.service-desc {
  font-size: var(--fs-body-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  margin-top: auto;
}

.service-perks li {
  font-size: var(--fs-body-sm);
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.service-perks .material-symbols-outlined {
  font-size: 1rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card-footer {
  border-top: 1px solid var(--cream-border);
  padding-top: 16px;
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-cta);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso-rich);
  transition: all var(--transition);
}

.service-cta-link .material-symbols-outlined {
  font-size: 1rem;
  color: var(--gold-primary);
  transition: transform var(--transition);
}

.service-cta-link:hover {
  color: var(--gold-deep);
}

.service-cta-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* ==========================================================================
   ABOUT & BRAND HERITAGE SECTION
   ========================================================================== */
.about-section {
  background: var(--cream-card);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 6vw;
  align-items: center;
}

.about-copy-col h2 {
  font: 500 var(--fs-section-h2)/1.1 var(--font-display);
  color: var(--espresso-rich);
  margin-bottom: 22px;
}

.about-copy-col h2 em {
  font-style: italic;
  color: var(--gold-primary);
}

.about-lead {
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--espresso-card);
  margin-bottom: 18px;
  font-weight: 500;
}

.about-copy-col p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  border-top: 1px solid rgba(46, 21, 13, 0.15);
  border-bottom: 1px solid rgba(46, 21, 13, 0.15);
  padding: 24px 0;
}

.highlight-item {
  display: flex;
  flex-direction: column;
}

.highlight-number {
  font: 500 2.8rem/1 var(--font-display);
  color: var(--gold-deep);
  margin-bottom: 6px;
}

.highlight-text strong {
  display: block;
  font-size: var(--fs-body-sm);
  color: var(--espresso-rich);
}

.highlight-text span {
  font-size: var(--fs-label);
  color: var(--text-muted);
  line-height: 1.35;
  display: block;
}

.about-quote-box {
  background: rgba(255, 255, 255, 0.65);
  border-left: 3px solid var(--gold-primary);
  padding: 22px 26px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  position: relative;
}

.quote-ornament {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-primary);
  opacity: 0.35;
  position: absolute;
  top: 10px;
  right: 18px;
}

.quote-text {
  font-style: italic;
  font-size: var(--fs-body);
  color: var(--espresso-rich);
  margin-bottom: 8px !important;
}

.quote-author {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Visual Stack in About */
.visual-stack {
  position: relative;
  height: 600px;
}

.visual-card {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}

.visual-card-primary {
  top: 0;
  left: 0;
  width: 78%;
  height: 480px;
  z-index: 1;
}

.visual-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(22, 8, 4, 0.85));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.visual-card-caption .cursive-brand {
  font-size: 1.7rem;
  color: var(--gold-light);
}

.visual-card-accent {
  bottom: 0;
  right: 0;
  width: 58%;
  height: 340px;
  z-index: 2;
  border: 4px solid #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.visual-badge-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(37, 16, 9, 0.88);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(216, 155, 40, 0.35);
  color: #fff;
}

.visual-badge-overlay .badge-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-light);
}

.visual-badge-overlay .badge-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   DESTINATIONS & TOUR PACKAGES SECTION
   ========================================================================== */
.destinations-section {
  background: var(--espresso-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.destinations-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(216, 155, 40, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(216, 155, 40, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.destinations-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  align-items: flex-end;
  margin-bottom: 60px;
}

.destinations-header h2 {
  font: 500 var(--fs-section-h2)/1.1 var(--font-display);
  color: #fff;
}

.destinations-header h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.destinations-subtext {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--text-light-muted);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.destination-card {
  position: relative;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(216, 155, 40, 0.25);
  box-shadow: var(--shadow-md);
}

.destination-card img {
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.25, 1);
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(22, 8, 4, 0.95) 0%,
      rgba(22, 8, 4, 0.5) 45%,
      rgba(22, 8, 4, 0.1) 100%);
}

.destination-content {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.dest-tag {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.destination-content h3 {
  font: 500 var(--fs-dest-h3)/1.2 var(--font-display);
  color: #fff;
  margin-bottom: 10px;
}

.destination-content p {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 18px;
}

.dest-link {
  font-size: var(--fs-cta);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.dest-link:hover {
  gap: 12px;
  color: #fff;
}

/* ==========================================================================
   PORTFOLIO & GALLERY SECTION
   ========================================================================== */
.gallery-section {
  background: var(--cream-bg);
}

.gallery-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  align-items: flex-end;
  margin-bottom: 45px;
}

.gallery-head h2 {
  font: 500 var(--fs-section-h2)/1.1 var(--font-display);
  color: var(--espresso-rich);
}

.gallery-head h2 em {
  font-style: italic;
  color: var(--gold-primary);
}

.gallery-head p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-muted);
}

.gallery-filter-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: transparent;
  border: 1px solid var(--cream-border);
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: var(--fs-cta);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter-btn:hover {
  border-color: var(--gold-primary);
  background: #fff;
}

.gallery-filter-btn.active {
  background: var(--espresso-rich);
  color: var(--gold-light);
  border-color: var(--espresso-rich);
}

.gallery-grid-dynamic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
}

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

.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.25, 1), filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.gallery-item figcaption {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(22, 8, 4, 0.92) 0%, rgba(22, 8, 4, 0.3) 50%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}

.gallery-item:hover figcaption {
  opacity: 1;
}

.item-category {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.gallery-item figcaption h4 {
  font: 500 1.4rem/1.25 var(--font-display);
  margin-bottom: 12px;
  color: #fff;
}

.expand-btn {
  align-self: flex-start;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: none;
  color: var(--espresso-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.expand-btn:hover {
  transform: scale(1.12);
  background: #fff;
}

.expand-btn .material-symbols-outlined {
  font-size: 1.2rem;
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS SECTION
   ========================================================================== */
.testimonials-section {
  background: var(--cream-card);
  border-top: 1px solid var(--cream-border);
}

.testimonials-carousel-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.testimonials-track {
  position: relative;
  min-height: 280px;
}

.testi-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(12px);
  background: #fff;
  padding: 44px 50px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testi-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.testi-rating {
  color: var(--gold-primary);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.testi-quote {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--espresso-rich);
  font-style: italic;
  margin-bottom: 24px;
}

.testi-client strong {
  display: block;
  font-size: var(--fs-body);
  color: var(--espresso-rich);
}

.testi-client span {
  font-size: var(--fs-label);
  color: var(--gold-deep);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testi-nav-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testi-nav-btn {
  background: #fff;
  border: 1px solid var(--cream-border);
  color: var(--espresso-rich);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.testi-nav-btn:hover {
  background: var(--espresso-rich);
  color: var(--gold-light);
  border-color: var(--espresso-rich);
}

.testi-dots-box {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 24px;
  height: 3px;
  border: none;
  background: rgba(46, 21, 13, 0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}

.testi-dot.active {
  background: var(--gold-primary);
  width: 40px;
}

/* ==========================================================================
   CONTACT & CONSULTATION BOOKING SECTION
   ========================================================================== */
.contact-section {
  background: var(--espresso-rich);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-backdrop-art {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(216, 155, 40, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.contact-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 7vw;
  position: relative;
  z-index: 2;
  align-items: center;
}

.contact-info-panel h2 {
  font: 500 var(--fs-section-h2)/1.08 var(--font-display);
  color: #fff;
  margin-bottom: 20px;
}

.contact-info-panel h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.contact-info-panel p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 45px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  font-size: 1.6rem;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 155, 40, 0.25);
  flex-shrink: 0;
}

.contact-row strong {
  display: block;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.contact-row span {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.9);
}

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

.contact-tagline-quote {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.contact-tagline-quote .cursive-brand {
  font-size: 2rem;
  color: var(--gold-light);
  display: block;
}

.contact-tagline-quote small {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.6);
}

/* Consultation Form Panel */
.contact-form-panel {
  background: rgba(22, 8, 4, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(216, 155, 40, 0.35);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-panel h3 {
  font: 500 var(--fs-card-h3)/1.2 var(--font-display);
  color: #fff;
  margin-bottom: 8px;
}

.form-instruction {
  font-size: var(--fs-body-sm);
  color: var(--gold-bright);
  margin-bottom: 18px;
}

/* Service Chips Selector */
.service-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 26px;
}

.service-chip {
  position: relative;
  display: block;
  cursor: pointer;
}

.service-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-label {
  display: block;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  font-size: var(--fs-micro);
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-chip input:checked+.chip-label {
  background: var(--gold-primary);
  color: var(--espresso-deep);
  border-color: var(--gold-light);
  font-weight: 700;
}

.service-chip:hover .chip-label {
  border-color: var(--gold-primary);
}

/* Form Fields */
.form-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: var(--fs-micro);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-size: var(--fs-body-sm);
  outline: none;
  transition: border-color var(--transition), background-color var(--transition);
}

.form-group select option {
  background: var(--espresso-rich);
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(216, 155, 40, 0.2);
}

.submit-btn {
  height: 52px;
}

.form-alert {
  margin-top: 16px;
  font-size: 0.88rem;
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.form-alert.success {
  display: block;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid #25D366;
  color: #7ef1a5;
}

.form-alert.error {
  display: block;
  background: rgba(235, 87, 87, 0.15);
  border: 1px solid #eb5757;
  color: #ff9b9b;
}

/* ==========================================================================
   GLOBAL LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 8, 4, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

.lightbox-img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(216, 155, 40, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  color: #fff;
  margin-top: 14px;
  font-size: 0.95rem;
  text-align: center;
  max-width: 700px;
  font-style: italic;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Kerala Event Essential)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--espresso-rich);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  border: 1px solid rgba(216, 155, 40, 0.3);
}

.floating-whatsapp-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--espresso-deep);
  color: var(--text-light-muted);
  border-top: 1px solid rgba(216, 155, 40, 0.2);
}

.footer-primary {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 5vw;
}

.footer-logo {
  height: 60px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 8px;
}

.footer-tagline-script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.footer-brand-desc {
  font-size: var(--fs-body-sm);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  transition: all var(--transition);
}

.social-circle:hover {
  background: var(--gold-primary);
  color: var(--espresso-deep);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.footer-col-nav h4,
.footer-col-contact h4 {
  font: 500 1.25rem/1.2 var(--font-display);
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-nav h4::after,
.footer-col-contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-col-contact p {
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-col-contact strong {
  color: var(--gold-light);
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 5vw;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.motto-center {
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--gold-light);
}

.back-to-top .material-symbols-outlined {
  font-size: 1rem;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================= */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal-active .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
}

.js-reveal-active .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .destination-card {
    height: 380px;
  }

  .footer-primary {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 800px) {

  /* Hero video display flip for mobile */
  .hero-video-desktop {
    display: none !important;
  }

  .hero-video-mobile {
    display: block !important;
  }

  .top-bar {
    padding: 6px 12px;
  }

  .top-bar-contacts {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar-tagline {
    font-size: 0.68rem;
    gap: 4px;
    justify-content: center;
  }

  .tagline-sub {
    display: none !important;
  }

  .top-bar-tagline .cursive-brand {
    font-size: 1.15rem;
  }

  .site-header {
    height: 68px;
    padding: 0 16px;
    width: 100%;
  }

  .desktop-nav,
  .whatsapp-btn-header,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: rgba(46, 21, 13, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(46, 21, 13, 0.15);
    cursor: pointer;
    padding: 8px;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--espresso-rich);
    margin: 3px 0;
  }

  .hero {
    height: calc(100svh - 80px);
    min-height: 600px;
    margin: 0 10px 30px;
    border-radius: var(--radius-md);
  }

  .hero-copy {
    padding: 0 5vw;
    bottom: 30px;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-crest {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 14px;
  }

  .hero-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .hero-tagline-script {
    font-size: 1.45rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9.5vw, 3.4rem);
  }

  .hero-intro {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-video-controls {
    right: 16px;
    top: 16px;
    bottom: auto;
    padding: 6px 12px;
  }

  .video-status-text {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  .eyebrow-gold {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .eyebrow-gold::after {
    display: none;
  }

  .section-pad {
    padding: 60px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .visual-stack {
    height: 480px;
  }

  .visual-card-primary {
    width: 90%;
    height: 380px;
  }

  .visual-card-accent {
    width: 75%;
    height: 260px;
  }

  .destinations-header,
  .gallery-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid-dynamic {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .gallery-item figcaption {
    opacity: 1;
    background: linear-gradient(0deg, rgba(22, 8, 4, 0.9) 0%, transparent 80%);
  }

  .testi-card {
    padding: 30px 24px;
  }

  .testi-quote {
    font-size: 0.98rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-panel {
    padding: 30px 20px;
  }

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

  .form-fields-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: auto;
  }

  .footer-primary {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .floating-whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-video {
    animation: none;
  }
}