:root {
  --gold: #C9A227;
  --gold-dark: #A6841E;
  --gold-light: #E7C766;
  --ink: #1C1A17;
  --cream: #FAF3E0;
  --cream-border: #E7DEC4;
  --card-border: #F1E9D3;
  --text-body: #4A4234;
  --text-muted: #5C5245;
  --dark-bg: #1E1A14;
  --dark-card: #2B2620;
  --dark-border: #4A4030;
  --dark-muted: #C9BFA8;
  --whatsapp: #25D366;
  --whatsapp-dark: #1FB855;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: #FFFFFF;
  color: var(--ink);
  overflow-x: hidden;
}

p {
  line-height: 1.7;
}

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

a {
  color: var(--gold-dark);
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  z-index: 100;
  font-weight: 500;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-outline {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  padding: 10px 18px;
}

.btn-lg {
  font-size: 18px;
  padding: 16px 24px;
  min-height: 56px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-sm {
  font-size: 14px;
  padding: 10px 16px;
  min-height: 44px;
}

.btn-xs {
  font-size: 13px;
  padding: 11px 16px;
  min-height: 44px;
  border-radius: 30px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(36, 31, 23, 0.1);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 8px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.logo span {
  color: var(--gold-dark);
}

.nav-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  transform: scale(1.8);
}

.nav-desktop {
  display: none;
}

.nav-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav {
  animation: navSlideDown 0.18s ease-out;
  background: #FFFFFF;
  border-top: 1px solid var(--cream-border);
  padding: 8px 20px 16px;
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--cream-border);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav[hidden] {
  display: none;
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 860px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .nav-desktop nav {
    display: flex;
    gap: 24px;
  }

  .nav-desktop nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
  }

  .nav-desktop nav a:hover {
    color: var(--gold-dark);
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .nav-mobile {
    display: none;
  }
}

/* Desktop nav links need their own wrapper since header-inner is flex; handled via markup */
nav.nav-desktop {
  gap: 24px;
}

nav.nav-desktop a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

nav.nav-desktop a:hover {
  color: var(--gold-dark);
}

a.nav-desktop.btn-whatsapp {
  display: none;
}

@media (min-width: 860px) {
  a.nav-desktop.btn-whatsapp {
    display: inline-flex;
  }
}

/* Eyebrow */
.eyebrow,
.eyebrow-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 14px;
}

.eyebrow p,
.eyebrow-text {
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.15em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  margin: 0;
}

.eyebrow-light p {
  color: var(--gold-light);
}

.eyebrow-dark p {
  color: var(--gold-light);
}

.eyebrow-light,
.eyebrow-dark {
  justify-content: flex-start;
}

.rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.eyebrow-dark .rule {
  background: #8E6E1A;
}

.rule-block {
  width: 28px;
  margin: 0 0 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(18, 15, 10, 0.72) 0%, rgba(24, 19, 12, 0.55) 55%, rgba(18, 15, 10, 0.8) 100%);
  scroll-margin-top: 80px;
}

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

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px 90px;
  width: 100%;
}

.hero-content {
  max-width: 600px;
}

h1 {
  color: #FFFFFF;
  font-size: clamp(32px, 7vw, 52px);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 500;
}

.hero-lede {
  color: #F3EAD9;
  font-size: clamp(17px, 3vw, 20px);
  line-height: 1.6;
  margin: 0 0 28px;
}

.hero-call {
  color: #F3EAD9;
  font-size: 14px;
  margin: 12px 0 0;
}

.hero-call a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: none;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(231, 199, 102, 0.35);
  backdrop-filter: blur(6px);
  padding: 10px 16px;
  border-radius: 30px;
}

.badge .stars {
  color: var(--gold-light);
  letter-spacing: 1px;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  display: block;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 20px;
  scroll-margin-top: 80px;
}

.section-narrow {
  max-width: 800px;
}

.section-cream {
  background: var(--cream);
  max-width: none;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.section-cream>.section-inner,
.section-cream>.about-grid,
.section-cream>.visit-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  background: var(--dark-bg);
  max-width: none;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding-left: 0;
  padding-right: 0;
}

.section-title {
  font-size: clamp(28px, 5vw, 38px);
  text-align: center;
  margin: 0 0 12px;
}

.section-title-light {
  color: #FFFFFF;
  margin-bottom: 40px;
}

.section-lede {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 44px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(36, 31, 23, 0.1);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--card-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(36, 31, 23, 0.16);
}

.service-card .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold);
  color: #1E1A14;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-body h3 {
  font-size: 21px;
  margin: 0 0 8px;
}

.service-body p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0 0 16px;
  flex: 1;
}

.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--card-border);
}

.price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 18px;
}

.price-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.duration {
  font-size: 13px;
  color: var(--text-muted);
}

/* Why us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #F6E9C4, #EAD28F);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: inset 0 0 0 1px rgba(166, 132, 30, 0.25);
}

.feature h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-family: var(--font-body);
}

.feature p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Offer */
.offer-card {
  border: 2px solid var(--gold);
  border-radius: 20px;
  background: #FFFFFF;
  padding: 36px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
  box-shadow: 0 10px 34px rgba(201, 162, 39, 0.12);
}

.offer-copy h2 {
  font-size: clamp(24px, 4vw, 32px);
  margin: 0 0 14px;
}

.offer-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 18px;
}

.offer-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.offer-price {
  font-weight: 500;
  color: var(--gold-dark);
  font-size: 20px;
}

.offer-card img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Reviews */
.scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 20px 8px;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  background: var(--dark-card);
  border-radius: 16px;
  padding: 24px;
  flex: 0 0 82%;
  scroll-snap-align: start;
  margin: 0;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 16px;
  margin: 0 0 14px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #F3EAD9;
  margin: 0 0 22px;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8E6E1A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E1A14;
  font-weight: 500;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-card cite {
  font-weight: 600;
  color: #FFFFFF;
  font-size: 15px;
  font-style: normal;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark-border);
  transition: background 0.2s;
}

.dots span.active {
  background: var(--gold);
}

#gallery-dots span {
  background: var(--cream-border);
}

#gallery-dots span.active {
  background: var(--gold);
}

@media (min-width: 860px) {
  .scroller {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
  }

  .testimonial-card {
    flex: none;
  }

  .dots {
    display: none;
  }
}

/* Gallery */
.gallery-scroller {
  padding: 30px 20px !important;
  margin-top: 0;
}

/* Gallery marquee and center-pop */
.gallery-marquee-wrapper {
  width: 100%;
  position: relative;
  padding: 0;
}

.gallery-scroller {
  display: flex !important;
  align-items: center;
  gap: 36px;
  overflow-x: auto;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

@media (min-width: 860px) {
  .gallery-scroller {
    scroll-snap-type: none !important;
  }
}

.gallery-scroller::-webkit-scrollbar {
  display: none;
}



.gallery-img {
  height: 250px !important; /* base height for mobile */
  width: auto !important;
  flex: 0 0 auto !important;
  margin-bottom: 0 !important;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 12px !important;
  scroll-snap-align: center;
}

.gallery-img.center-pop {
  transform: scale(1.05) !important;
  z-index: 10;
  position: relative;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.marquee-duplicate {
  display: contents; /* children become part of the flex container */
}



@media (min-width: 860px) {
  .gallery-img {
    height: 380px !important; /* larger height for desktop */
  }
}


/* About */
.about-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 16px;
  height: auto;
}

.about-grid h2 {
  font-size: clamp(26px, 4vw, 32px);
  margin: 0 0 16px;
}

.about-grid p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 14px;
}

.about-grid p:last-child {
  margin: 0;
}

/* FAQ */
.faq-list {}

.faq-item {
  border-bottom: 1px solid var(--cream-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  min-height: 48px;
}

.faq-question span:first-child {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.15s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 18px;
  padding: 0 4px;
  display: none;
}

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

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 6px 24px rgba(36, 31, 23, 0.1);
}

.map-embed iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.visit-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 6px 24px rgba(36, 31, 23, 0.1);
}

.visit-card h3 {
  font-size: 20px;
  margin: 0 0 16px;
}

.visit-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 6px;
}

.visit-card p:nth-of-type(2) {
  margin-bottom: 16px;
}

.visit-card p:nth-of-type(4) {
  margin-bottom: 22px;
}

.visit-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visit-actions .btn {
  width: 100%;
}

/* Footer */
.site-footer {
  background: var(--dark-bg);
  padding: 64px 20px 120px;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.footer-grid p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-muted);
  margin: 0 0 4px;
}

.footer-grid>div:first-child a {
  font-size: 14px;
  color: var(--gold-light);
  text-decoration: none;
}

.footer-heading {
  font-weight: 600;
  color: #FFFFFF;
  font-size: 15px;
  margin: 0 0 14px !important;
}

.footer-grid>div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.footer-grid>div:nth-child(2) a {
  color: var(--dark-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  text-align: center;
  color: #8F856B;
  font-size: 13px;
  margin: 40px 0 0;
}

/* Floating WhatsApp */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.2s;
}

.fab-whatsapp:hover {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.service-card:hover img {
  transform: scale(1.05);
}
/* Marquee for Reviews */
.marquee-container {
  display: flex;
  overflow: hidden;
  gap: 24px;
  width: 100%;
  padding: 20px 0;
}

.marquee-content {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  animation: marquee 35s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 24px)); }
}

.marquee-content .testimonial-card {
  width: 300px;
  flex: 0 0 auto;
  white-space: normal;
}

/* Service landing pages */
.breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  padding-top: 24px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: underline;
}

.page-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 20px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(28px, 5vw, 40px);
  margin: 16px 0;
}

.page-hero .hero-lede {
  color: var(--text-body);
}

.page-hero .hero-call {
  color: var(--text-muted);
}

.page-hero .hero-call a {
  color: var(--gold-dark);
}

.content-list {
  margin: 0 0 32px;
  padding-left: 20px;
  color: var(--text-body);
  line-height: 1.7;
}

.content-list li {
  margin-bottom: 8px;
}

.crosslinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.crosslinks a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
}

.crosslinks a:hover {
  background: var(--gold-light);
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.service-card h3 a:hover {
  text-decoration: underline;
}

.service-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-foot .btn {
  position: relative;
  z-index: 2;
}
