/* ── Google Fonts imported via HTML ── */

/* ── CSS Variables ── */
:root {
  --sand-100: #F5EDD8;
  --sand-200: #EDE0C4;
  --sand-300: #DDD0AC;
  --sand-400: #C8B882;
  --gold-400: #E8C14A;
  --gold-500: #D4A017;
  --gold-600: #B88010;
  --earth-600: #6B5A38;
  --earth-700: #3D3018;
  --earth-800: #2C2415;
  --earth-900: #1A1708;
  --white: #FFFFFF;
  --font-heading: 'Namdhinggo', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--earth-900);
  background: var(--white);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Utility classes ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--earth-900);
}

.section-title--light { color: var(--sand-100); }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--earth-900);
}
.btn-gold:hover { background: var(--gold-400); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-dark {
  background: var(--earth-900);
  color: var(--sand-100);
}
.btn-dark:hover { background: var(--earth-800); }

/* ── SVG Icons ── */
.icon-svg {
  display: block;
  flex-shrink: 0;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon .icon-svg {
  width: 44px;
  height: 44px;
  color: var(--gold-500);
  stroke: currentColor;
  fill: none;
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.service-card-icon .icon-svg {
  width: 26px;
  height: 26px;
  color: var(--gold-400);
  stroke: currentColor;
  fill: none;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon .icon-svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  stroke: currentColor;
  fill: none;
}
.contact-info-icon .icon-svg--fill {
  fill: currentColor;
  stroke: none;
}

.footer-contact-item .icon {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item .icon .icon-svg {
  width: 14px;
  height: 14px;
  color: var(--gold-500);
  stroke: currentColor;
  fill: none;
}
.footer-contact-item .icon .icon-svg--fill {
  fill: currentColor;
  stroke: none;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.875rem 0;
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(26, 23, 8, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-logo {
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  transition: box-shadow 0.2s;
}
.navbar-logo:hover { box-shadow: 0 2px 12px rgba(255,255,255,0.3); }
.navbar-logo img { height: 40px; width: auto; display: block; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-100);
  transition: color 0.2s;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--gold-400); }

.navbar-links .btn-gold,
.navbar-links .btn-gold:hover,
.navbar-links .btn-gold.active { color: var(--white); }

.navbar-links .btn-gold {
  padding: 0.5rem 1.1rem;
  font-size: 0.7rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sand-100);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* Hamburger → X when menu is open */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--earth-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  overflow-y: auto;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(212,160,23,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  padding: 1rem 2rem;
  color: rgba(245,237,216,0.75);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s;
  width: 100%;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold-400); }
.mobile-menu .btn-gold {
  margin-top: 2rem;
  display: inline-block;
  text-align: center;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  padding: 0.9rem 2.5rem;
  width: auto;
  color: var(--earth-900);
}
.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--sand-100);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.18); }
.mobile-menu-divider {
  width: 40px;
  height: 1px;
  background: rgba(212,160,23,0.25);
  margin: 0.25rem auto;
}

/* ── Hero sections ── */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-full { min-height: 100vh; }
.hero-md   { min-height: 65vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,23,8,0.22) 0%, rgba(26,23,8,0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.hero-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.hero-title em { font-style: italic; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--sand-300);
  max-width: 440px;
  line-height: 1.7;
}

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

.hero-left { flex: 1 1 0; min-width: 0; }
.hero-right {
  flex: 0 0 320px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .hero-content { flex-direction: column !important; gap: 1.25rem !important; }
  .hero-right { flex: none; align-items: flex-start; width: 100%; }
  .hero-right .hero-sub { text-align: left; max-width: 100%; margin-bottom: 0; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  pointer-events: none;
}
.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-300);
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--sand-300), transparent);
}

/* ── Wave section dividers ── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  display: block;
  margin-top: -1px;
  margin-bottom: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* ── Strip bar ── */
.strip {
  background: var(--earth-900);
  padding: 0.9rem 0;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  align-items: center;
}
.strip-item {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B5A38;
}

/* ── Sections ── */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section--sand-100 { background: var(--sand-100); }
.section--sand-200 { background: var(--sand-200); }
.section--sand-300 { background: var(--sand-300); }
.section--dark  { background: var(--earth-800); }
.section--darkest { background: var(--earth-900); }
.section--white { background: var(--white); }

/* ── Two-column grid ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── About intro image block ── */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  position: relative;
}
.about-images img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.about-images img:nth-child(2) { margin-top: 1.5rem; }
.about-images img:nth-child(3) { margin-top: 0.75rem; }

.badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold-500);
  color: var(--earth-900);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label { font-size: 0.78rem; font-weight: 600; }

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .features-grid { grid-template-columns: 1fr; } }

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--earth-900);
  margin-bottom: 0.5rem;
}
.feature-desc { font-size: 0.85rem; color: var(--earth-600); line-height: 1.65; }

/* ── Package cards grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid--4 { grid-template-columns: 1fr; }
}

/* ── Package card ── */
.package-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.package-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,8,0.9) 0%, rgba(26,23,8,0.15) 55%, transparent 100%);
}

.card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.78rem;
  color: var(--sand-300);
  line-height: 1.55;
  margin-bottom: 0.875rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s, transform 0.3s;
}
.package-card:hover .card-desc { opacity: 1; transform: translateY(0); }

.card-btns { display: flex; gap: 0.5rem; }

.card-btn {
  flex: 1;
  padding: 0.6rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  border: none;
}
.card-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.card-btn-outline:hover { background: rgba(255,255,255,0.12); }

.card-btn-gold {
  background: var(--gold-500);
  color: var(--earth-900);
  display: block;
}
.card-btn-gold:hover { background: var(--gold-400); }

/* ── Filter bar ── */
.filter-bar {
  background: var(--earth-900);
  padding: 1.1rem 0;
  position: sticky;
  top: 66px;
  z-index: 50;
  border-bottom: 1px solid var(--earth-800);
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6B5A38;
  margin-right: 0.25rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--earth-800);
  background: var(--earth-800);
  color: var(--sand-300);
  transition: all 0.2s;
}
.filter-btn:hover { background: var(--earth-700); }
.filter-btn.active {
  background: var(--gold-500);
  color: var(--earth-900);
  border-color: var(--gold-500);
}
.filter-count {
  margin-left: auto;
  font-size: 0.72rem;
  color: #6B5A38;
}

/* ── Gallery strip (home page) ── */
.gallery-strip {
  display: flex;
  overflow-x: auto;
  gap: 0.75rem;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--sand-400) transparent;
}
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--sand-400); border-radius: 2px; }

.gallery-item {
  flex-shrink: 0;
  width: 280px;
  height: 320px;
  border-radius: 0.75rem;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── Gallery page ── */
.gallery-filter-bar {
  background: var(--earth-900);
  padding: 1.1rem 0;
  position: sticky;
  top: 66px;
  z-index: 50;
  border-bottom: 1px solid var(--earth-800);
}

.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
}
@media (max-width: 1100px) { .gallery-masonry { columns: 3; } }
@media (max-width: 700px)  { .gallery-masonry { columns: 2; } }
@media (max-width: 420px)  { .gallery-masonry { columns: 1; } }

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.04); }

.gallery-masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,8,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}
.gallery-masonry-item:hover .gallery-masonry-overlay { background: rgba(26,23,8,0.4); }

.gallery-zoom-icon {
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-masonry-item:hover .gallery-zoom-icon { opacity: 1; }
.gallery-zoom-icon .icon-svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  display: block;
  border-radius: 0.5rem;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); }

.lightbox-caption {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  margin-top: 0.85rem;
  text-align: center;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav .icon-svg { width: 22px; height: 22px; stroke: currentColor; fill: none; }
.lightbox-nav-prev { left: 1.5rem; }
.lightbox-nav-next { right: 1.5rem; }

/* ── CTA section ── */
.cta-section {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-section img.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 8, 0.72);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--sand-300);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  background: var(--earth-900);
  color: var(--sand-200);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

.footer-brand-logo { height: 52px; margin-bottom: 1.25rem; background: #ffffff; padding: 5px 10px; border-radius: 4px; display: inline-block; }
.footer-brand-desc { font-size: 0.82rem; color: #9A8650; line-height: 1.7; max-width: 300px; }

.footer-socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--earth-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9A8650;
  transition: all 0.2s;
  font-size: 0.85rem;
}
.footer-socials a:hover { background: var(--gold-500); color: var(--earth-900); border-color: var(--gold-500); }
.footer-socials .icon-svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sand-100);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: #9A8650; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-400); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #9A8650;
  margin-bottom: 0.9rem;
  align-items: flex-start;
}
.footer-contact-item a { color: #9A8650; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-400); }

.footer-bottom {
  border-top: 1px solid var(--earth-800);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.72rem; color: #4A3C1E; }
.razertech-logo { display: inline-block; vertical-align: middle; }

/* ── WhatsApp button ── */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, background 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.1); background: #1ebe57; }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

/* ── Services grid ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--earth-800);
  border: 1px solid var(--earth-700);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.svc-card:hover { border-color: var(--gold-600); transform: translateY(-3px); }

.svc-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.06); }

.svc-card-body { padding: 1.1rem 1.25rem 1.4rem; flex: 1; }
.svc-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sand-100);
  margin-bottom: 0.4rem;
}
.svc-card-desc { font-size: 0.78rem; color: #9A8650; line-height: 1.6; }

/* ── Team cards ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  gap: 3rem 2.5rem;
  justify-content: center;
}
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 160px); gap: 2.5rem 2rem; } }
@media (max-width: 420px) { .team-grid { grid-template-columns: 160px; } }

.team-card {
  background: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 180px;
}

.team-card img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  background: none;
  border-radius: 0.65rem;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
  display: block;
}

.team-card-body { padding: 0; width: 100%; }
.team-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--earth-900); margin-bottom: 0.2rem; }
.team-role { font-size: 0.68rem; font-weight: 700; color: var(--gold-600); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.team-bio { font-size: 0.78rem; color: var(--earth-600); line-height: 1.65; }

/* ── Blog grid ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
  cursor: pointer;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.15); }

.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.blog-category { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-600); }
.blog-read-time { font-size: 0.72rem; color: #9A8650; }

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--earth-900);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-title { color: var(--gold-600); }
.blog-excerpt { font-size: 0.82rem; color: var(--earth-600); line-height: 1.65; margin-bottom: 1rem; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; }
.blog-date { font-size: 0.72rem; color: #9A8650; }
.blog-more { font-size: 0.82rem; font-weight: 700; color: var(--gold-600); text-decoration: none; }
.blog-more:hover { color: var(--gold-500); }
.blog-card-img-link { display: block; text-decoration: none; }

/* ── Single blog post ── */
.post-body { max-width: 760px; margin: 0 auto; }
.post-back { display: inline-block; font-size: 0.82rem; font-weight: 600; color: var(--gold-600); text-decoration: none; margin-bottom: 2rem; }
.post-back:hover { color: var(--gold-500); }
.post-lead { font-size: 1.1rem; color: var(--earth-700); line-height: 1.7; margin-bottom: 2rem; font-style: italic; border-left: 3px solid var(--gold-500); padding-left: 1.25rem; }
.post-content { font-size: 1rem; color: var(--earth-800); line-height: 1.85; }
.post-content br { display: block; margin-bottom: 0.6em; content: ''; }
.post-content p { margin-bottom: 1.4em; }
.post-content h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--earth-900); margin: 1.8em 0 0.7em; line-height: 1.3; }
.post-content h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--earth-900); margin: 1.6em 0 0.6em; line-height: 1.35; }
.post-content h4 { font-size: 1.05rem; font-weight: 700; color: var(--earth-900); margin: 1.4em 0 0.5em; }
.post-content ul, .post-content ol { margin: 0 0 1.4em; padding-left: 1.4rem; }
.post-content li { margin-bottom: 0.5em; }
.post-content strong, .post-content b { color: var(--earth-900); font-weight: 700; }
.post-content a { color: var(--gold-600); text-decoration: underline; text-underline-offset: 2px; }
.post-content a:hover { color: var(--gold-500); }
.post-content blockquote { border-left: 3px solid var(--gold-500); padding-left: 1.25rem; margin: 1.6em 0; font-style: italic; color: var(--earth-700); }
.post-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.4em 0; }
.post-content > *:last-child { margin-bottom: 0; }

/* ── Contact page ── */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 3.5rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-label { font-size: 0.82rem; font-weight: 600; color: var(--earth-900); margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.82rem; color: var(--earth-600); }
.contact-info-value a { color: var(--earth-600); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--gold-600); }

.contact-form-card {
  background: var(--white);
  border-radius: 1.25rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  padding: 2.5rem;
}

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-grid-2 { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--earth-700); margin-bottom: 0.4rem; }
.form-label .req { color: var(--gold-600); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
  border: 1.5px solid var(--sand-300);
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--earth-900);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ── Itinerary modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(26, 23, 8, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--sand-100);
  border-radius: 1.25rem;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(16px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-inner {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  min-height: 0;
}
.modal-inner::-webkit-scrollbar { width: 5px; }
.modal-inner::-webkit-scrollbar-track { background: transparent; }
.modal-inner::-webkit-scrollbar-thumb { background: var(--sand-300); border-radius: 3px; }

.modal-hero {
  position: relative;
  background: var(--earth-900);
  border-radius: 1.25rem 1.25rem 0 0;
  overflow: hidden;
}
.modal-hero img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
}

.modal-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(26,23,8,0.75), transparent);
  pointer-events: none;
}
.modal-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.modal-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.4rem;
}
.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: white;
  font-size: 1.1rem;
  line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.4); }

.modal-body { padding: 1.75rem; overflow: visible; }

.modal-section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--earth-900);
  margin-bottom: 0.875rem;
}

.modal-desc { font-size: 0.85rem; color: var(--earth-700); line-height: 1.7; margin-bottom: 1.5rem; }

.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.75rem; }
.highlight-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.82rem; color: var(--earth-800); }
.highlight-dot { color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }

.itinerary-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.75rem; }
.itinerary-day { display: flex; gap: 1rem; }
.day-badge {
  flex-shrink: 0;
  background: var(--gold-500);
  color: var(--earth-900);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 0.3rem;
  white-space: nowrap;
  height: fit-content;
  margin-top: 2px;
}
.day-title { font-size: 0.85rem; font-weight: 700; color: var(--earth-900); margin-bottom: 0.25rem; }
.day-desc { font-size: 0.8rem; color: var(--earth-600); line-height: 1.6; }

.includes-box {
  background: var(--sand-200);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 0.5rem;
}
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.include-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--earth-700); }
.include-check { color: var(--gold-600); font-weight: 700; }

.modal-footer {
  flex-shrink: 0;
  background: rgba(245,237,216,0.98);
  border-top: 1px solid var(--sand-300);
  padding: 1rem 1.75rem;
  border-radius: 0 0 1.25rem 1.25rem;
}
.modal-footer .btn { display: block; width: 100%; text-align: center; padding: 0.9rem 1rem; font-size: 0.9rem; }

/* ── Custom CTA ── */
.custom-cta {
  background: var(--earth-900);
  padding: 4rem 0;
  text-align: center;
}
.custom-cta .section-title--light { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 0.875rem; }
.custom-cta p { color: #9A8650; margin-bottom: 2rem; font-size: 0.95rem; }

/* ── Success message ── */
.form-error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6c2; border-radius: 6px; padding: 0.65rem 1rem; font-size: 0.85rem; margin-bottom: 1rem; }
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success-icon { font-size: 4rem; margin-bottom: 1rem; }
.form-success-title { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--earth-900); margin-bottom: 0.75rem; }
.form-success-text { font-size: 0.9rem; color: var(--earth-600); max-width: 320px; margin: 0 auto; line-height: 1.7; }

/* ── Responsive navbar ── */
@media (max-width: 900px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
}

/* ── Service offer sections (about page) ── */
.svc-offer { padding: 5rem 0; }
.svc-offer--dark { background: var(--earth-900); color: var(--sand-100); }
.svc-offer--dark .section-label { color: var(--gold-500); }
.svc-offer--sand { background: var(--sand-100); color: var(--earth-900); }
.svc-offer--sand .section-label { color: var(--gold-600); }

.svc-offer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.svc-offer-inner--reverse .svc-offer-text { order: 2; }
.svc-offer-inner--reverse .svc-offer-images { order: 1; }

.svc-offer-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.svc-offer-desc {
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.svc-offer--dark .svc-offer-desc { color: var(--sand-300); }
.svc-offer--sand .svc-offer-desc { color: var(--earth-700); }
.svc-offer-text .btn { margin-top: 1rem; }

.svc-offer-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.svc-offer-images img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
}
.svc-offer-images img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

@media (max-width: 900px) {
  .svc-offer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .svc-offer-inner--reverse .svc-offer-text { order: unset; }
  .svc-offer-inner--reverse .svc-offer-images { order: unset; }
  .svc-offer { padding: 3.5rem 0; }
}

/* ── Featured safaris: show 2 cards on mobile ── */
@media (max-width: 600px) {
  #featured-packages .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  #featured-packages .cards-grid .package-card:nth-child(n+3) {
    display: none !important;
  }
  #featured-packages .package-card {
    aspect-ratio: 2/3;
  }
}
