:root {
  --primary: #c8a253;            /* logo gold */
  --primary-dark: #a8852f;       /* deeper gold */
  --secondary: #1e2f5a;           /* logo navy */
  --navy: #1e2f5a;
  --navy-dark: #14224a;
  --light: #fbf8f2;              /* warm paper */
  --text: #4a4a4a;               /* slate text */
  --heading: #14224a;            /* deep navy headings */
  --accent: #c8a253;             /* gold accent */
  --rose: #a8475a;
  --moss: #6a7a4b;
  --border: #e8e0d0;             /* cream border */
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--heading);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--primary); }

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  z-index: 1000;
  padding: 1.4rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}

.site-header.scrolled {
  background: rgba(10, 16, 32, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.7rem 0;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.site-header .logo img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}

.logo-mark {
  width: 44px;
  height: auto;
  color: var(--accent);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  transition: width 0.3s ease;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.logo-sub {
  font-family: 'Playfair Display', serif;
  font-size: 0.66rem;
  letter-spacing: 6px;
  color: var(--accent);
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.site-header.scrolled .logo-mark { width: 38px; }
.site-header.scrolled .logo-main { font-size: 1.25rem; }
.site-header.scrolled .logo-sub { font-size: 0.62rem; letter-spacing: 5px; }

@media (max-width: 768px) {
  .logo { gap: 0.6rem; }
  .logo-mark { width: 34px; }
  .logo-main { font-size: 1.05rem; letter-spacing: 1px; }
  .logo-sub { font-size: 0.55rem; letter-spacing: 3.5px; }
  .site-header.scrolled .logo-mark { width: 30px; }
  .site-header.scrolled .logo-main { font-size: 0.95rem; }
  .site-header.scrolled .logo-sub { font-size: 0.5rem; letter-spacing: 3px; }
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: 0.3rem 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.main-nav a.active,
.main-nav a:hover { color: var(--accent); }

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

.menu-toggle { color: var(--white); }

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

.header-cta { display: flex; align-items: center; gap: 1rem; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--heading);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--heading);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--heading);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-shadow: none;
}

.btn:hover {
  background: #c8a253;
  border-color: #c8a253;
  color: var(--white);
  box-shadow: none;
  transform: none;
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn-outline:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }

.btn-light { background: var(--white); color: var(--heading); border-color: var(--white); }
.btn-light:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 1.1s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.38) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Top fade — keeps the header logo + nav legible over any image */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 5;
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 140px 24px 120px;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.hero-brand img {
  height: 110px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
  opacity: 0.98;
}

.hero-brand-name {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  padding: 0.5rem 1.4rem;
  border-top: 1px solid rgba(200, 162, 83, 0.6);
  border-bottom: 1px solid rgba(200, 162, 83, 0.6);
}

@media (max-width: 768px) {
  .hero-brand img { height: 70px; }
  .hero-brand-name { font-size: 0.7rem; letter-spacing: 5px; padding: 0.4rem 1rem; }
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-slide h1 {
  color: var(--white);
  margin-bottom: 0.6rem;
  font-size: clamp(2.1rem, 5.2vw, 4.4rem);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
  letter-spacing: -0.3px;
  font-weight: 500;
}

.hero-subtitle {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  color: var(--accent);
  margin: 0 auto 2.2rem;
  letter-spacing: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-top: 0.9rem;
}

.hero-subtitle::before {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 0.9rem;
  opacity: 0.7;
}

.hero-slide.active .hero-brand,
.hero-slide.active .hero-eyebrow,
.hero-slide.active h1,
.hero-slide.active p,
.hero-slide.active .hero-actions {
  animation: heroSlideUp 1.2s ease both;
}
.hero-slide.active .hero-eyebrow { animation-delay: 0.15s; }
.hero-slide.active h1 { animation-delay: 0.3s; }
.hero-slide.active p { animation-delay: 0.45s; }
.hero-slide.active .hero-actions { animation-delay: 0.6s; }

@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero + Header CTA — transparent with gold hover, no shadow */
.hero-slide .btn,
.site-header .btn {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.75);
  padding: 1rem 2.4rem;
  letter-spacing: 1.5px;
  box-shadow: none;
}

.hero-slide .btn:hover,
.site-header .btn:hover {
  background: #c8a253;
  border-color: #c8a253;
  color: var(--white);
  box-shadow: none;
  transform: none;
}

/* Nav arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 300;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05);
}

.hero-nav.prev { left: 36px; }
.hero-nav.next { right: 36px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  width: 32px;
  border-radius: 5px;
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  background: var(--primary);
  width: 0;
  transition: width 0.1s linear;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 30px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 3px;
  z-index: 10;
  opacity: 0.85;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-scroll:hover { opacity: 1; color: var(--accent); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@media (max-width: 768px) {
  .hero-nav { width: 42px; height: 42px; font-size: 1.3rem; }
  .hero-nav.prev { left: 12px; }
  .hero-nav.next { right: 12px; }
  .hero-dots { bottom: 50px; }
  .hero-brand-name { font-size: 0.75rem; letter-spacing: 4px; }
  .hero-brand-line { width: 30px; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 3px; }
  .hero-scroll { display: none; }
  .hero-slide-inner { padding: 110px 20px 90px; }
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, #3a2418 0%, #5a3828 100%);
  color: var(--white);
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  /* extend a few px past every edge so the blur doesn't reveal sharp borders */
  inset: -12px;
  background: url('https://vl-prod-static.b-cdn.net/system/images/000/898/915/cf19821494750316f551a9074e32ba74/original/3.png') center/cover;
  opacity: 0.3;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  transform: scale(1.03);
}

.page-banner-inner { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); margin-bottom: 0.8rem; }

.page-banner-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color:#fff !important;
  margin: 0 auto;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.9rem;
  opacity: 0.9;
}

.breadcrumb li::after { content: '/'; margin-left: 0.5rem; color: var(--accent); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a:hover { color: var(--accent); }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }

/* Ornamental divider — paisley-inspired */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0.6rem 0 1rem;
  color: var(--accent);
}
.ornament::before, .ornament::after {
  content: '';
  display: block;
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.ornament-mark {
  font-size: 1.1rem;
  letter-spacing: 4px;
}

/* Subtle paisley accent corner */
.paisley-bg {
  position: relative;
}
.paisley-bg::before {
  content: '';
  position: absolute;
  top: 20px; right: 20px;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle at center, var(--accent) 1px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.25;
  pointer-events: none;
  border-radius: 50%;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
}

.section-head h2 { margin-bottom: 1rem; }

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

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=800&q=80') center/cover;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 3px solid var(--primary);
  border-radius: 8px;
  z-index: -1;
}

.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.2rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 50px; height: 50px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--primary);
  border: 2px solid var(--border);
}

.about-feature h4 { margin-bottom: 0.3rem; font-size: 1.1rem; }
.about-feature p { font-size: 0.9rem; margin: 0; }

/* ===== SERVICES ===== */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--light);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(200, 155, 108, 0.15);
  background: var(--white);
  border-color: var(--primary);
}

.service-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon { transform: rotate(360deg); }

.service-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 1.2rem; }

.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== DESTINATIONS SLIDER ===== */
.destinations-section {
  padding: 110px 0 60px;
  background: var(--white);
  overflow: hidden;
}

.destinations-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.destinations-title { max-width: 620px; }

.destinations-title .section-eyebrow {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.destinations-title h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: #000;
  margin: 0.2rem 0 0.8rem;
  letter-spacing: -0.5px;
  line-height: 1.05;
}

.destinations-title p {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.destinations-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}

.destinations-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--heading);
  color: var(--heading);
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.destinations-nav:hover {
  background: #c8a253;
  border-color: #c8a253;
  color: var(--white);
}

.destinations-nav:active { transform: scale(0.96); }

.destinations-slider {
  width: 100%;
  padding-bottom: 60px;
}

.destinations-track {
  --dest-card-w: min(900px, 68vw);
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Vertical padding gives the scaled-up centre card and its shadow breathing room;
     horizontal padding centres any card under the viewport (no left-edge stick) */
  padding: 34px calc((100vw - var(--dest-card-w)) / 2);
}

.destinations-track::-webkit-scrollbar { display: none; }

.destination-card {
  flex: 0 0 var(--dest-card-w);
  scroll-snap-align: center;
  position: relative;
  height: 600px;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  background: var(--secondary);
  box-shadow: 0 14px 36px rgba(20, 34, 74, 0.16);
  /* Default state — side cards: slightly smaller and dimmer */
  transform: scale(0.92);
  opacity: 0.78;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.6s ease,
    box-shadow 0.6s ease;
  will-change: transform;
}

/* Centre card — larger, sharper, deeper shadow */
.destination-card.is-center {
  transform: scale(1.04);
  opacity: 1;
  box-shadow: 0 28px 56px rgba(20, 34, 74, 0.28);
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.destination-card.is-center img { transform: scale(1.02); }

.destination-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.0) 35%,
    rgba(0, 0, 0, 0.55) 75%,
    rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
  opacity: 0.95;
}

.destination-card:hover::after { opacity: 1; }

.destination-pin {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.destination-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2.2rem 2.4rem 2.4rem;
  color: var(--white);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.destination-card:hover .destination-label {
  transform: translateY(-6px);
}

.destination-label h4 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.destination-label span {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.3px;
}

@media (max-width: 968px) {
  .destinations-head { align-items: flex-start; }
}

@media (max-width: 768px) {
  .destinations-section { padding: 80px 0 40px; }
  .destinations-nav { width: 46px; height: 46px; font-size: 1.3rem; }
  .destinations-track { --dest-card-w: 88vw; padding-top: 16px; padding-bottom: 16px; }
  .destination-card {
    height: 460px;
    border-radius: 20px;
    /* On mobile only one card is visible — disable the scale/dim treatment */
    transform: none;
    opacity: 1;
  }
  .destination-card.is-center { transform: none; }
  .destination-label { padding: 1.5rem 1.6rem 1.8rem; }
  .destination-label h4 { font-size: 1.7rem; }
  .destination-label span { font-size: 0.95rem; }
}

/* ===== GALLERY INSIGHTS ===== */
.gallery-insights-section {
  padding: 110px 0;
  background: var(--white);
}

.gallery-insights-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.gallery-insights-title { max-width: 620px; }

.gallery-insights-title .section-eyebrow {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.gallery-insights-title h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: #000;
  margin-bottom: 0.7rem;
  letter-spacing: -0.5px;
  line-height: 1.05;
}

.gallery-insights-title p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.gallery-insights-head .btn {
  background: transparent;
  border-color: var(--heading);
  color: var(--heading);
}

.gallery-insights-head .btn:hover {
  background: #c8a253;
  border-color: #c8a253;
  color: var(--white);
}

.gallery-insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 0.7rem;
}

.gallery-tile {
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 34, 74, 0.12);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.5s ease;
  position: relative;
  cursor: pointer;
}

.gallery-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 34, 74, 0.55));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(20, 34, 74, 0.22);
}

.gallery-tile:hover::after { opacity: 1; }

/* Asymmetric layout — featured + supporting tiles */
.gallery-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-tile:nth-child(2) { grid-column: span 2; }
.gallery-tile:nth-child(3) { grid-column: span 1; }
.gallery-tile:nth-child(4) { grid-column: span 1; }
.gallery-tile:nth-child(5) { grid-column: span 2; }
.gallery-tile:nth-child(6) { grid-column: span 2; }

@media (max-width: 968px) {
  .gallery-insights-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-tile:nth-child(2),
  .gallery-tile:nth-child(5),
  .gallery-tile:nth-child(6) { grid-column: span 2; grid-row: span 1; }
  .gallery-tile:nth-child(3),
  .gallery-tile:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 600px) {
  .gallery-insights-section { padding: 80px 0; }
  .gallery-insights-grid { grid-auto-rows: 150px; }
}

/* ===== INTRO STATS + COLLAGE ===== */
.intro-stats {
  background: #0a1024;
  color: var(--white);
  padding: 120px 0 240px;
  position: relative;
  overflow: hidden;
}

.intro-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(200, 162, 83, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(30, 47, 90, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  z-index: 1;
}

.intro-content { max-width: 540px; }

.stats-grid-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem 3rem;
  margin-bottom: 2.5rem;
}

.stat-large { display: flex; flex-direction: column; gap: 0.5rem; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.stat-text {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.intro-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.intro-handwritten {
  font-family: 'Caveat', cursive;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
}

.intro-collage {
  position: relative;
  height: 620px;
}

.collage-circle {
  position: absolute;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.collage-circle:hover { transform: scale(1.06); }

.collage-circle.c1 { width: 230px; height: 230px; top: 30px; left: 32%; }
.collage-circle.c2 { width: 290px; height: 290px; top: 300px; right: 0; }
.collage-circle.c3 { width: 190px; height: 190px; top: 200px; left: 0; }
.collage-circle.c4 { width: 160px; height: 160px; bottom: 30px; left: 26%; }
.collage-circle.c5 { width: 110px; height: 110px; top: 80px; right: 60px; border: 2px solid rgba(200, 162, 83, 0.4); }

/* Cloud silhouette decoration */
.intro-decoration {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  width: 100%;
  height: 190px;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 -2px 0 rgba(255, 255, 255, 0.06));
}

@media (max-width: 768px) {
  .intro-decoration { height: 120px; }
}

/* ===== CULTURAL BANNER (navy with cloud borders top + bottom) ===== */
.cultural-banner {
  position: relative;
  background: #0a1024 !important;
  color: var(--white);
  padding: 230px 0 240px;
  overflow: hidden;
}

.cultural-banner > .container {
  position: relative;
  z-index: 2;
}

.section-cloud {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  height: 190px;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.section-cloud-top {
  top: -1px;
  transform: scaleY(-1);
}

.section-cloud-bottom { bottom: -1px; }

@media (max-width: 768px) {
  .cultural-banner { padding: 160px 0 180px; }
  .section-cloud { height: 120px; }
}

@media (max-width: 968px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .intro-collage { height: 540px; max-width: 540px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .intro-stats { padding: 80px 0 130px; }
  .stats-grid-large { gap: 2rem 1.5rem; margin-bottom: 2rem; }
  .stat-text { font-size: 0.92rem; }
  .intro-description { font-size: 0.95rem; }
  .intro-collage { height: 420px; max-width: 400px; }
  .collage-circle.c1 { width: 170px; height: 170px; top: 20px; left: 30%; }
  .collage-circle.c2 { width: 210px; height: 210px; top: 200px; right: 0; }
  .collage-circle.c3 { width: 140px; height: 140px; top: 140px; left: 0; }
  .collage-circle.c4 { width: 110px; height: 110px; bottom: 20px; left: 25%; }
  .collage-circle.c5 { width: 80px; height: 80px; top: 50px; right: 40px; }
}

/* ===== SERVICES SLIDER ===== */
.services-slider-section {
  background: var(--white);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.services-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.services-slider-title { max-width: 620px; }
.services-slider-title h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: #000;
  letter-spacing: -0.5px;
  line-height: 1.05;
}
.services-slider-title p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.services-slider-actions .btn {
  background: transparent;
  border-color: var(--heading);
  color: var(--heading);
}
.services-slider-actions .btn:hover {
  background: #c8a253;
  border-color: #c8a253;
  color: var(--white);
}

.services-slider {
  position: relative;
}

.services-track {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1.2rem 0 2.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.service-slide-card {
  flex: 0 0 330px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.5s ease;
  background: var(--secondary);
  display: block;
}

.service-slide-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 56px rgba(30, 47, 90, 0.25);
}

.service-card-image {
  height: 440px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 34, 74, 0.1) 0%,
    rgba(20, 34, 74, 0.2) 50%,
    rgba(20, 34, 74, 0.92) 100%);
}

.service-card-number { display: none; }

.service-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.7rem 1.7rem 2rem;
  color: var(--white);
}

.service-card-info h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.service-card-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.55;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.service-slide-card:hover .service-card-cta {
  gap: 0.9rem;
}

.services-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid rgba(20, 34, 74, 0.12);
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 300;
  cursor: pointer;
  border-radius: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(20, 34, 74, 0.18);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.services-nav:hover {
  background: #c8a253;
  color: var(--white);
  border-color: #c8a253;
  transform: translateY(-50%) scale(1.06);
}

.services-nav:active { transform: translateY(-50%) scale(0.96); }

.services-nav.prev { left: 18px; }
.services-nav.next { right: 18px; }

@media (max-width: 968px) {
  .services-slider-head { align-items: flex-start; }
}

@media (max-width: 768px) {
  .services-slider-section { padding: 80px 0; }
  .service-slide-card { flex: 0 0 280px; }
  .service-card-image { height: 370px; }
  .service-card-info h3 { font-size: 1.35rem; }
  .service-card-info p { font-size: 0.95rem; }
  .services-nav { width: 42px; height: 42px; font-size: 1.2rem; }
  .services-nav.prev { left: 0; }
  .services-nav.next { right: 0; }
}

/* ===== STATS / COUNTER ===== */
.stats-section {
  background: linear-gradient(135deg, var(--secondary), #1a1a1a);
  color: var(--white);
  padding: 80px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--border);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  color: var(--white);
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption h4 { color: var(--white); margin-bottom: 0.2rem; }
.gallery-caption span { font-size: 0.85rem; opacity: 0.8; }

/* Filter buttons */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--text);
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--white);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.testimonials-title { max-width: 620px; }
.testimonials-title .section-eyebrow {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.testimonials-title h2 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  color: #000;
  margin: 0.2rem 0 0.7rem;
  letter-spacing: -0.5px;
  line-height: 1.08;
}
.testimonials-title p {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.testimonials-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}

.testimonials-nav {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--heading);
  color: var(--heading);
  font-size: 1.4rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.testimonials-nav:hover {
  background: #c8a253;
  border-color: #c8a253;
  color: var(--white);
}
.testimonials-nav:active { transform: scale(0.96); }

.testimonials-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 4px 2rem;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 calc((100% - 2.8rem) / 3);
  scroll-snap-align: start;
  background: #f5f5f5;
  border-radius: 22px;
  border: 1.5px solid #c8a253;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 22px rgba(20, 34, 74, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(200, 162, 83, 0.22);
  border-color: #c8a253;
}

.testimonial-tag {
  background: var(--navy);
  color: var(--white);
  align-self: flex-start;
  padding: 1.05rem 1.5rem 1.15rem;
  border-bottom-right-radius: 26px;
  border-top-left-radius: 22px;
  position: relative;
  max-width: 78%;
}

.testimonial-tag h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.testimonial-tag span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.2px;
}

.testimonial-body {
  padding: 1.3rem 1.7rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: #e8b945;
  font-size: 1.15rem;
  letter-spacing: 3px;
  margin-bottom: 0.9rem;
  line-height: 1;
}

.testimonials-track .testimonial-quote {
  border-left: 2px solid var(--navy);
  padding-left: 1.05rem;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--heading);
  font-weight: 400;
}

.testimonials-track .testimonial-quote::before { content: none; }

@media (max-width: 968px) {
  .testimonial-card { flex: 0 0 calc((100% - 1.4rem) / 2); }
}

@media (max-width: 640px) {
  .testimonials-section { padding: 80px 0; }
  .testimonial-card { flex: 0 0 86%; }
  .testimonials-nav { width: 46px; height: 46px; font-size: 1.2rem; }
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.team-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }

.team-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
}

.team-info { padding: 1.5rem; }
.team-info h4 { margin-bottom: 0.3rem; }
.team-role { color: var(--primary); font-size: 0.9rem; margin-bottom: 1rem; }

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.team-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.team-social a:hover { background: var(--primary); color: var(--white); }

/* ===== BLOG / JOURNAL ===== */
.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.blog-head-title { max-width: 640px; }

.blog-head-title h2 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  color: #000;
  margin: 0 0 0.7rem;
  letter-spacing: -0.5px;
  line-height: 1.08;
}

.blog-head-title p {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  border: 1.5px solid #c8a253;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(200, 162, 83, 0.18);
  border-color: #c8a253;
}

.blog-image {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-date {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: var(--heading);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid #c8a253;
}

@media (max-width: 768px) {
  .blog-head { align-items: flex-start; }
}

.blog-content { padding: 1.8rem; }

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.blog-content h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.blog-content h3 a:hover { color: var(--primary); }
.blog-content p { font-size: 0.95rem; margin-bottom: 1.2rem; }

.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { font-size: 1.15rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info { background: var(--secondary); color: var(--white); padding: 3rem; border-radius: 8px; }
.contact-info h3 { color: var(--white); margin-bottom: 1rem; }
.contact-info p { opacity: 0.9; margin-bottom: 2rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.9rem; margin: 0; opacity: 0.9; }

.contact-form { background: var(--white); padding: 3rem; border-radius: 8px; border: 1px solid var(--border); }
.contact-form h3 { margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.2rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--light);
  color: var(--text);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: none;
}

.form-success.show { display: block; }

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  background: #1a1a1a;
  color: #b8b8b8;
  padding: 130px 0 30px;
  overflow: hidden;
}

/* Curvy top border — wavy SVG drawn in gold across the footer's top edge */
.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 70px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'><path d='M0,70 C 120,10 240,130 360,70 C 480,10 600,130 720,70 C 840,10 960,130 1080,70 C 1200,10 1320,130 1440,70 L1440,0 L0,0 Z' fill='%23fbf8f2'/><path d='M0,70 C 120,10 240,130 360,70 C 480,10 600,130 720,70 C 840,10 960,130 1080,70 C 1200,10 1320,130 1440,70' fill='none' stroke='%23c8a253' stroke-width='2.5'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
}

/* Decorative flower illustration in the bottom-left corner */
.site-footer::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(240px, 22vw, 360px);
  height: clamp(180px, 18vw, 260px);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 260' fill='none'><g><path d='M30 240 Q 50 140 90 160' stroke='%234a7c3a' stroke-width='3' stroke-linecap='round' fill='none'/><path d='M80 250 Q 120 130 150 200' stroke='%234a7c3a' stroke-width='3' stroke-linecap='round' fill='none'/><path d='M130 250 Q 170 100 200 180' stroke='%234a7c3a' stroke-width='3' stroke-linecap='round' fill='none'/><path d='M190 250 Q 220 130 250 200' stroke='%234a7c3a' stroke-width='3' stroke-linecap='round' fill='none'/><path d='M240 250 Q 270 130 300 170' stroke='%234a7c3a' stroke-width='3' stroke-linecap='round' fill='none'/><g transform='translate(70 110)'><circle cx='0' cy='0' r='10' fill='%23f7c948'/><g fill='%23a9c8f0'><ellipse cx='0' cy='-18' rx='8' ry='14'/><ellipse cx='0' cy='18' rx='8' ry='14'/><ellipse cx='-18' cy='0' rx='14' ry='8'/><ellipse cx='18' cy='0' rx='14' ry='8'/><ellipse cx='-13' cy='-13' rx='10' ry='10'/><ellipse cx='13' cy='13' rx='10' ry='10'/><ellipse cx='-13' cy='13' rx='10' ry='10'/><ellipse cx='13' cy='-13' rx='10' ry='10'/></g></g><g transform='translate(140 80)'><circle cx='0' cy='0' r='12' fill='%23222'/><g fill='%23f7c948'><ellipse cx='0' cy='-22' rx='8' ry='16'/><ellipse cx='0' cy='22' rx='8' ry='16'/><ellipse cx='-22' cy='0' rx='16' ry='8'/><ellipse cx='22' cy='0' rx='16' ry='8'/><ellipse cx='-16' cy='-16' rx='11' ry='11'/><ellipse cx='16' cy='16' rx='11' ry='11'/><ellipse cx='-16' cy='16' rx='11' ry='11'/><ellipse cx='16' cy='-16' rx='11' ry='11'/></g></g><g transform='translate(210 130)'><circle cx='0' cy='0' r='9' fill='%23f7c948'/><g fill='%234a7c8a'><ellipse cx='0' cy='-15' rx='7' ry='12'/><ellipse cx='0' cy='15' rx='7' ry='12'/><ellipse cx='-15' cy='0' rx='12' ry='7'/><ellipse cx='15' cy='0' rx='12' ry='7'/></g></g><g transform='translate(270 100)'><circle cx='0' cy='0' r='8' fill='%23222'/><g fill='%23c8a253'><ellipse cx='0' cy='-15' rx='6' ry='11'/><ellipse cx='0' cy='15' rx='6' ry='11'/><ellipse cx='-15' cy='0' rx='11' ry='6'/><ellipse cx='15' cy='0' rx='11' ry='6'/><ellipse cx='-11' cy='-11' rx='8' ry='8'/><ellipse cx='11' cy='11' rx='8' ry='8'/><ellipse cx='-11' cy='11' rx='8' ry='8'/><ellipse cx='11' cy='-11' rx='8' ry='8'/></g></g><g transform='translate(35 175)'><path d='M0 0 Q -6 -8 0 -16 Q 6 -8 0 0 Z' fill='%23d94a4a'/><path d='M0 0 Q -6 8 -12 4 Q -8 -2 0 0 Z' fill='%23d94a4a'/></g><g transform='translate(170 200)'><path d='M0 0 Q -8 -10 0 -20 Q 8 -10 0 0 Z' fill='%23e85a4a'/></g></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}
.site-footer .container { position: relative; z-index: 3; }
@media (max-width: 768px) {
  .site-footer::after { width: 180px; height: 130px; opacity: 0.6; }
  .site-footer { padding: 110px 0 30px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.8fr;
  gap: 2.6rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-col p { font-size: 0.92rem; margin-bottom: 1.5rem; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a { font-size: 0.92rem; }
.footer-col ul a:hover { color: var(--primary); padding-left: 5px; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}

.footer-logo .logo-mark {
  width: 50px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-logo .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}

.footer-logo .logo-sub {
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  letter-spacing: 6px;
  color: var(--accent);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 0.35rem;
}

.social-links { display: flex; gap: 0.8rem; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.social-links a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

/* Footer contact column — stacked label above value for clean column layout */
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-contact li:last-child { margin-bottom: 0; }

.footer-contact .contact-label {
  display: block;
  color: var(--accent);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.footer-contact a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  font-style: normal;
}

.footer-contact a + a { margin-top: 0.15rem; }

.footer-contact a:hover { color: var(--accent); }

.footer-contact address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
  padding: 0.8rem 1.4rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
}
.newsletter-form button:hover { background: var(--primary-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
}

.footer-bottom p { margin: 0; }

.footer-bottom .footer-copy { color: rgba(255, 255, 255, 0.75); }

.footer-bottom .footer-credit { color: rgba(255, 255, 255, 0.6); }

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover { color: var(--white); }

@media (max-width: 600px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(200, 155, 108, 0.4);
}

.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ===== COUNTDOWN ===== */
.countdown-section {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1606490194859-07c18c9f0968?w=1600&q=80') center/cover fixed;
  color: var(--white);
  text-align: center;
}

.countdown-section h2 { color: var(--white); }

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  min-width: 120px;
  border: 1px solid rgba(255,255,255,0.2);
}

.countdown-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--accent);
  font-weight: 600;
  display: block;
  line-height: 1;
}

.countdown-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(200, 155, 108, 0.15);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-name { font-size: 1.3rem; margin-bottom: 0.5rem; }

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--primary);
  font-weight: 600;
  margin: 1rem 0;
}
.pricing-price small { font-size: 1rem; color: var(--text); }

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}
.pricing-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li::before { content: '✓'; color: var(--primary); font-weight: bold; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(10, 16, 32, 0.98);
    backdrop-filter: blur(10px);
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 1.2rem; }
  .main-nav a { color: rgba(255, 255, 255, 0.88); }
  .menu-toggle { display: block; }
  .header-cta .btn:not(.menu-toggle) { display: none; }
  section { padding: 70px 0; }
  .hero { padding: 100px 0 60px; }
  .page-banner { padding: 140px 0 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .countdown-item { padding: 1rem 1.2rem; min-width: 90px; }
  .countdown-number { font-size: 2rem; }
  .stat-number { font-size: 2.5rem; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }


/* Footer social icons */
.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(200, 162, 83, 0.55);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.social-links a:hover {
  background: #c8a253;
  color: #ffffff;
  border-color: #c8a253;
  transform: translateY(-2px);
}
.social-links a svg { display: block; }
