/* ==========================================================================
   Tulum Botox — Design System (matching GoHighLevel site)
   Colors: #0B0B0B (bg), #FDFAF5 (cream text), #C4A46B (gold accent)
   Fonts: Cormorant Garamond (headings), Jost (body), Oswald (buttons)
   ========================================================================== */

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

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #FDFAF5;
  background: #0B0B0B;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #C4A46B; text-decoration: none; transition: color .3s, opacity .3s; }
a:hover { opacity: .85; }

/* ---------- Global Focus States (WCAG 2.1 AA) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.lang-btn:focus-visible {
  outline: 2px solid #C4A46B;
  outline-offset: 2px;
}

/* ---------- Skip-to-Content (Accessibility) ---------- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: #C4A46B;
  color: #0B0B0B;
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10000;
  border-radius: 0 0 6px 6px;
  transition: top .2s;
}
.skip-to-content:focus {
  top: 0;
  opacity: 1;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  color: #FDFAF5;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  letter-spacing: 1.6px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: 1px;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: .5px;
}

h4 {
  font-size: 1.15rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(196,164,107,.8);
}

.gold { color: #C4A46B; }
.gold-italic { color: #C4A46B; font-style: italic; }

p { margin-bottom: 1rem; }

/* ---------- Layout ---------- */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

/* Subpage header: tighter top padding since no full-screen hero */
.page-header {
  padding: 40px 0 60px;
  margin-top: 80px;
}

.text-center { text-align: center; }

/* ---------- Top Bar removed — single nav bar only ---------- */

/* ---------- Navbar (custom sticky) ---------- */
.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11,11,11,.92);
  border-bottom: 1px solid rgba(196,164,107,.15);
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #FDFAF5;
}

.nav-logo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #FDFAF5;
}

.nav-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(196,164,107,.8);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #FDFAF5;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s;
}

.nav-link:hover, .nav-link.active { color: #C4A46B; opacity: 1; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FDFAF5;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-whatsapp svg { width: 20px; height: 20px; fill: #FDFAF5; }

.nav-cta {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #C4A46B;
  color: #C4A46B;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
}

.nav-cta:hover {
  background: #C4A46B;
  color: #0B0B0B;
  opacity: 1;
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #FDFAF5;
  transition: transform .3s, opacity .3s;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11,11,11,.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-mobile-menu.active { display: flex; }

.nav-mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #FDFAF5;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-mobile-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: #FDFAF5;
  font-size: 2rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 60px 80px;
}

/* Compact hero for subpages (no full-screen background) */
.hero.hero-subpage {
  min-height: auto;
  padding: 160px 60px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(11,11,11,1) 0%, rgba(20,18,15,1) 100%);
}
.hero.hero-subpage .container {
  max-width: 800px;
}
.hero.hero-subpage h1 {
  margin-bottom: 16px;
}
.hero.hero-subpage .hero-subtitle {
  max-width: 600px;
  margin: 0 auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,11,11,.7) 40%, rgba(11,11,11,.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(253,250,245,.6);
  margin-bottom: 30px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: #C4A46B;
}

.hero h1 { margin-bottom: 24px; }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(253,250,245,.7);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: #FDFAF5;
  color: #0B0B0B;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.btn-primary:hover { background: #C4A46B; color: #0B0B0B; opacity: 1; }

.btn-outline {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #FDFAF5;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(253,250,245,.3);
  cursor: pointer;
  transition: all .3s;
}

.btn-outline:hover { border-color: #C4A46B; color: #C4A46B; opacity: 1; }

.btn-gold {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #C4A46B;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #C4A46B;
  cursor: pointer;
  transition: all .3s;
}

.btn-gold:hover { background: #C4A46B; color: #0B0B0B; opacity: 1; }

/* ---------- Service Ticker / Marquee ---------- */
.ticker {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(196,164,107,.12);
  border-bottom: 1px solid rgba(196,164,107,.12);
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(253,250,245,.5);
  flex-shrink: 0;
}

.ticker-item::after {
  content: '\00b7';
  margin-left: 60px;
  color: rgba(196,164,107,.4);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}

.about-images {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-bottom: 2rem;
}
.about-img-main {
  width: 75%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.about-img-overlap {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 3/4;
  border: 3px solid #0B0B0B;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: #C4A46B;
  line-height: 1;
}

.about-stat-label {
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(253,250,245,.5);
  margin-top: 8px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.about-feature h4 {
  font-size: .85rem;
  margin-bottom: 6px;
}

.about-feature p {
  font-size: .9rem;
  color: rgba(253,250,245,.6);
  margin: 0;
}

/* ---------- Services Grid (GHL-matching) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 0;
  display: block;
  text-decoration: none;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s;
}

.service-card:hover .service-card-bg { transform: scale(1.05); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,.7) 0%, rgba(11,11,11,0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.service-card-num {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 300;
  color: rgba(253,250,245,.45);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.service-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #FDFAF5;
  margin-bottom: 6px;
}

.service-card-price {
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  font-weight: 300;
  color: rgba(253,250,245,.6);
  letter-spacing: 1px;
  margin-bottom: 0;
}

.service-card-desc {
  font-size: .85rem;
  color: rgba(253,250,245,.6);
  line-height: 1.5;
}

/* Services page section divider (GHL diamond) */
.svc-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 60px 0 40px;
}
.svc-divider::before,
.svc-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: rgba(196,164,107,.35);
}
.svc-divider .diamond {
  width: 8px;
  height: 8px;
  background: #C4A46B;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* "Discover the Full Treatment Menu" CTA (GHL style) */
.services-menu-cta {
  text-align: center;
  padding: 40px 0 20px;
}
.services-menu-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: #FDFAF5;
  margin-bottom: 30px;
}
.services-menu-cta h2 span { font-style: italic; color: #C4A46B; }
.services-menu-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.services-menu-btns .btn-outline {
  display: inline-block;
  padding: 14px 42px;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(253,250,245,.25);
  color: #FDFAF5;
  transition: all .3s;
}
.services-menu-btns .btn-outline:hover {
  border-color: #C4A46B;
  color: #C4A46B;
  opacity: 1;
}
.services-menu-btns .btn-gold-fill {
  display: inline-block;
  padding: 14px 42px;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: #C4A46B;
  color: #0B0B0B;
  border: 1px solid #C4A46B;
  transition: all .3s;
}
.services-menu-btns .btn-gold-fill:hover {
  background: transparent;
  color: #C4A46B;
  opacity: 1;
}

/* Benefits grid (Why Choose section) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.benefit-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #FDFAF5;
  margin-bottom: 8px;
}
.benefit-item p {
  font-size: .9rem;
  color: rgba(253,250,245,.6);
  line-height: 1.7;
}

.services-cta {
  text-align: center;
  margin-top: 50px;
}

.services-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: rgba(253,250,245,.5);
  margin-bottom: 20px;
}

.services-cta-text span { color: #C4A46B; }

/* ---------- Pricing Table ---------- */
.pricing-section {
  background: rgba(253,250,245,.02);
}

.pricing-category {
  margin-bottom: 40px;
}

.pricing-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #C4A46B;
  border-bottom: 1px solid rgba(196,164,107,.2);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(253,250,245,.06);
}

.pricing-name {
  font-size: .95rem;
  color: rgba(253,250,245,.85);
}

.pricing-amount {
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  color: #C4A46B;
  letter-spacing: 1px;
}

.pricing-note {
  font-size: .8rem;
  color: rgba(253,250,245,.4);
  font-style: italic;
  margin-top: 12px;
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.why-card {
  padding: 40px 30px;
  border: 1px solid rgba(196,164,107,.1);
  transition: border-color .3s;
}

.why-card:hover { border-color: rgba(196,164,107,.3); }

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.why-card p {
  font-size: .95rem;
  color: rgba(253,250,245,.6);
  line-height: 1.7;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 20px;
  filter: grayscale(.1);
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #FDFAF5;
  margin-bottom: 4px;
}

.team-role {
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C4A46B;
  margin-bottom: 12px;
}

.team-bio {
  font-size: .9rem;
  color: rgba(253,250,245,.6);
  line-height: 1.6;
}

/* ---------- Before/After Gallery ---------- */
.gallery-filters {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 8px 24px;
  background: transparent;
  border: 1px solid rgba(253,250,245,.2);
  color: #FDFAF5;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
}

.gallery-filter.active,
.gallery-filter:hover {
  border-color: #C4A46B;
  color: #C4A46B;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 2px;
  overflow: hidden;
}

.gallery-pair img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.gallery-label {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 6px;
  color: rgba(253,250,245,.5);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.testimonial {
  padding: 40px 30px;
  border: 1px solid rgba(196,164,107,.1);
}

.testimonial-stars {
  color: #C4A46B;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(253,250,245,.8);
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: .85rem;
  color: rgba(253,250,245,.5);
  letter-spacing: 1px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  text-align: center;
  padding: 120px 40px;
  background: linear-gradient(135deg, rgba(196,164,107,.08), rgba(11,11,11,1));
}

.cta-banner h2 { margin-bottom: 20px; }

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(253,250,245,.6);
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Contact / Location ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  margin-bottom: 28px;
}

.contact-info-label {
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(196,164,107,.8);
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 1rem;
  color: #FDFAF5;
}

.contact-info-value a { color: #FDFAF5; }
.contact-info-value a:hover { color: #C4A46B; }

.contact-map {
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(.8) invert(.92) contrast(1.1);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(196,164,107,.1);
  padding: 60px 0 30px;
  background: #0B0B0B;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #FDFAF5;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(196,164,107,.6);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: .9rem;
  color: rgba(253,250,245,.5);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col-title {
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(253,250,245,.4);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: .9rem;
  color: rgba(253,250,245,.6);
  text-decoration: none;
  transition: color .3s;
}

.footer-col a:hover { color: #C4A46B; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(196,164,107,.08);
}

.footer-copy {
  font-size: .8rem;
  color: rgba(253,250,245,.3);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: rgba(253,250,245,.4);
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-social a:hover { color: #C4A46B; }

/* ---------- Floating Side Tabs (WhatsApp + Book Now) ---------- */
.side-tabs {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.side-tab {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 10px;
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: opacity .3s;
}

.side-tab:hover { opacity: .8; }

.side-tab-whatsapp {
  background: #25D366;
  color: #fff;
}

.side-tab-book {
  background: rgba(196,164,107,.85);
  color: #0B0B0B;
}

/* ---------- Section Eyebrow (subtitle above heading) ---------- */
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(196,164,107,.8);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: rgba(253,250,245,.6);
  max-width: 600px;
  margin-bottom: 40px;
}

.section-desc.center { margin-left: auto; margin-right: auto; }

/* ---------- Blog Styles ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  border: 1px solid rgba(196,164,107,.08);
  transition: border-color .3s;
  overflow: hidden;
}

.blog-card:hover { border-color: rgba(196,164,107,.25); }

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-date {
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(196,164,107,.6);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #FDFAF5;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-title a { color: #FDFAF5; }
.blog-card-title a:hover { color: #C4A46B; }

.blog-card-excerpt {
  font-size: .9rem;
  color: rgba(253,250,245,.5);
  line-height: 1.6;
}

/* Blog Article */
.article-header {
  padding: 160px 0 60px;
  text-align: center;
}

.article-meta {
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(196,164,107,.6);
  margin-bottom: 20px;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(253,250,245,.8);
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
}

.article-content h3 {
  font-size: 1.4rem;
  margin: 2rem 0 .8rem;
}

.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: rgba(253,250,245,.8);
}

.article-content li {
  margin-bottom: .5rem;
  line-height: 1.7;
}

.article-content blockquote {
  border-left: 2px solid #C4A46B;
  padding: 16px 24px;
  margin: 2rem 0;
  font-style: italic;
  color: rgba(253,250,245,.7);
}

/* Article CTA */
.article-cta {
  text-align: center;
  padding: 60px 40px;
  margin: 40px 0;
  border: 1px solid rgba(196,164,107,.15);
}

.article-cta h3 { margin-bottom: 12px; }
.article-cta p { color: rgba(253,250,245,.6); margin-bottom: 24px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 110px 0 0;
}

.breadcrumbs-list {
  display: flex;
  gap: 8px;
  list-style: none;
  font-size: .8rem;
  letter-spacing: 1px;
  color: rgba(253,250,245,.4);
}

.breadcrumbs-list a { color: rgba(253,250,245,.4); }
.breadcrumbs-list a:hover { color: #C4A46B; }

.breadcrumbs-sep { color: rgba(196,164,107,.3); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 780px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(196,164,107,.1);
  padding: 24px 0;
}

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #FDFAF5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #C4A46B;
  transition: transform .3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-top: 16px;
  font-size: .95rem;
  color: rgba(253,250,245,.6);
  line-height: 1.7;
}

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

/* ---------- Service Detail Page ---------- */
.service-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.service-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,11,11,.75);
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

.service-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px;
}

.service-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(253,250,245,.8);
  margin-bottom: 1.5rem;
}

.service-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
}

.service-content h3 {
  font-size: 1.4rem;
  margin: 2rem 0 .8rem;
}

.service-content ul, .service-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: rgba(253,250,245,.8);
}

.service-content li {
  margin-bottom: .5rem;
  line-height: 1.7;
}

.service-pricing-box {
  border: 1px solid rgba(196,164,107,.2);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.service-pricing-box .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #C4A46B;
  margin-bottom: 8px;
}

.service-pricing-box .price-note {
  font-size: .85rem;
  color: rgba(253,250,245,.5);
}

/* ---------- Contact Page ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: rgba(253,250,245,.03);
  border: 1px solid rgba(196,164,107,.12);
  padding: 36px 30px;
  border-radius: 4px;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-detail {
  color: #C4A46B;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-description {
  font-size: .95rem;
  color: rgba(253,250,245,.6);
  margin-bottom: 20px;
}

.hours-note {
  color: #C4A46B;
  font-size: .9rem;
  font-style: italic;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(253,250,245,.05);
  border: 1px solid rgba(196,164,107,.2);
  color: #FDFAF5;
  font-family: 'Jost', sans-serif;
  font-size: 16px; /* prevents iOS zoom */
  border-radius: 4px;
  transition: border-color .3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #C4A46B;
  outline-offset: 1px;
  border-color: #C4A46B;
}

.contact-form label {
  display: block;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(253,250,245,.6);
  margin-bottom: 8px;
}

.form-group {
  margin-bottom: 24px;
}

.map-container iframe {
  width: 100%;
  border-radius: 4px;
}

.directions-list, .arrival-options {
  margin: 1rem 0 1.5rem 1.5rem;
  color: rgba(253,250,245,.8);
}

.directions-list li, .arrival-options li {
  margin-bottom: .5rem;
  line-height: 1.7;
}

.highlight-box {
  background: rgba(196,164,107,.06);
  border-left: 3px solid #C4A46B;
  padding: 20px 24px;
  margin-top: 24px;
}

/* ---------- Legal Pages ---------- */
.legal-page .container {
  max-width: 860px;
}

.legal-header {
  padding: 100px 0 40px;
  text-align: center;
}

.legal-header h1 {
  margin-bottom: 12px;
}

.last-updated {
  color: rgba(253,250,245,.4);
  font-size: .85rem;
}

.legal-content section {
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #C4A46B;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 20px 0 12px;
}

.legal-content ul, .legal-content ol {
  margin: 1rem 0 1rem 1.5rem;
  color: rgba(253,250,245,.8);
}

.legal-content li {
  margin-bottom: .5rem;
  line-height: 1.7;
}

.contact-info {
  background: rgba(196,164,107,.06);
  padding: 20px 24px;
  border-radius: 4px;
  margin: 16px 0;
}

/* ---------- Language Toggle ---------- */
.lang-toggle {
  display: flex;
  gap: 2px;
  margin-right: 12px;
  background: rgba(253,250,245,.08);
  border-radius: 4px;
  padding: 2px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(253,250,245,.5);
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 3px;
  transition: all .25s ease;
}
.lang-btn:hover {
  color: #FDFAF5;
}
.lang-btn.active {
  background: #C4A46B;
  color: #0B0B0B;
}
.lang-toggle-mobile {
  justify-content: center;
  margin: 0 0 16px;
  background: rgba(253,250,245,.06);
}
.lang-toggle-mobile .lang-btn {
  font-size: .85rem;
  padding: 6px 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .site-nav { padding: 20px 30px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-actions .lang-toggle { display: none; }
  .hero { padding: 120px 30px 60px; }
  .hero.hero-subpage { padding: 140px 30px 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .hero { padding: 120px 20px 50px; min-height: 90vh; }
  .hero.hero-subpage { padding: 120px 20px 40px; min-height: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { max-width: 360px; margin: 0 auto 2rem; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .side-tabs { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 80vh; }
  .hero.hero-subpage { min-height: auto; }
  .nav-logo-title { font-size: 1.1rem; letter-spacing: 5px; }
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: #C4A46B;
  margin: 20px auto;
}

/* Page-level backgrounds for variety */
.bg-subtle { background: rgba(253,250,245,.02); }
.bg-gradient { background: linear-gradient(180deg, #0B0B0B, rgba(196,164,107,.04), #0B0B0B); }

/* ---------- Class Aliases (compatibility) ---------- */
/* Hero aliases */
.hero-title { /* same as h1 in .hero */ }
.hero-subtitle, .hero-sub { font-size: 1.05rem; line-height: 1.8; color: rgba(253,250,245,.7); max-width: 500px; margin-bottom: 36px; }
.hero-buttons, .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

/* Button base */
.btn { display: inline-block; text-decoration: none; cursor: pointer; transition: all .3s; }

/* Section header */
.section-header { margin-bottom: 50px; }
.section-header .eyebrow, .about-eyebrow { font-family: 'Jost', sans-serif; font-size: .8rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(196,164,107,.8); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: rgba(253,250,245,.6); max-width: 600px; }

/* About aliases */
.about-left { text-align: center; }
.about-right h2 { margin-bottom: 20px; }
.about-right > p { font-size: 1.05rem; color: rgba(253,250,245,.7); margin-bottom: 30px; }
.stat-number, .about-stat-number { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: #C4A46B; line-height: 1; }
.stat-label, .about-stat-label { font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(253,250,245,.5); margin-top: 8px; }
.feature h3, .about-feature h4 { font-family: 'Jost', sans-serif; font-size: .85rem; font-weight: 400; text-transform: uppercase; letter-spacing: 3px; color: rgba(196,164,107,.8); margin-bottom: 6px; }
.feature p, .about-feature p { font-size: .9rem; color: rgba(253,250,245,.6); margin: 0; }

/* Service card aliases */
.service-image { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-info { padding: 20px; }
.service-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: #FDFAF5; margin-bottom: 4px; }
.service-price { font-family: 'Jost', sans-serif; font-size: .85rem; color: #C4A46B; letter-spacing: 1px; }

/* Pricing aliases */
.pricing-table { margin-top: 40px; }
.pricing-item, .pricing-name { font-size: .95rem; color: rgba(253,250,245,.85); }
.pricing-value, .pricing-amount { font-family: 'Jost', sans-serif; font-size: .95rem; color: #C4A46B; letter-spacing: 1px; }

/* CTA buttons wrapper */
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* btn-secondary alias */
.btn-secondary, .btn.btn-secondary { display: inline-block; padding: 16px 32px; background: transparent; color: #C4A46B; font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border: 1px solid #C4A46B; cursor: pointer; transition: all .3s; }
.btn-secondary:hover { background: #C4A46B; color: #0B0B0B; opacity: 1; }

/* Service pricing display */
.service-pricing-display { font-size: 1.2rem; color: #C4A46B; margin-top: 12px; }

/* Why card icon */
.why-icon { font-size: 2rem; margin-bottom: 16px; }

/* Team section header link */
.team-header-link { display: inline-block; margin-top: 20px; }

/* Blog card link */
.blog-card-link { display: inline-block; margin-top: 12px; font-size: .85rem; color: #C4A46B; letter-spacing: 1px; text-transform: uppercase; }

/* Responsive hero buttons */
@media (max-width: 768px) {
  .hero-buttons, .hero-btns { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
