/* ============================================
   OLAKIRA BY RIO — Shared Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@200;300;400;500&display=swap');

/* === RESET & ROOT === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0C0907;
  --bg-2:      #120D09;
  --bg-3:      #0F0A06;
  --gold:      #C59338;
  --gold-lt:   #E4C472;
  --gold-dk:   #8A6018;
  --cream:     #F2E8D0;
  --muted:     #7A6848;
  --border:    rgba(197, 147, 56, 0.18);
  --border-lt: rgba(197, 147, 56, 0.08);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
}

/* === UTILITY === */
.gold { color: var(--gold); }
.italic { font-style: italic; color: var(--gold-lt); }
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  font-family: 'Jost', sans-serif;
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold-lt); }

.btn-gold {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease;
}
.btn-gold:hover { background: var(--gold-lt); }

.btn-outline {
  display: inline-block;
  padding: 1rem 2.8rem;
  border: 1px solid rgba(197,147,56,0.45);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-lt); }

.divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.8rem 0;
}
.divider.center { margin: 1.8rem auto; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: rgba(12, 9, 7, 0.96);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-logo img {
  height: 46px;
  width: auto;
  transition: opacity 0.3s;
}
.nav-logo img:hover { opacity: 0.85; }

.nav-center {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}
.nav-links li { position: relative; }
.nav-links a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(242,232,208,0.8);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(18, 13, 9, 0.98);
  border: 1px solid var(--border);
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  padding: 0.75rem 1.4rem;
  border-bottom: 1px solid var(--border-lt);
  font-size: 0.65rem;
}
.nav-dropdown a:last-child { border-bottom: none; }

.nav-cta {
  margin-left: 1.5rem;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 9, 7, 0.98);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold-lt); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================
   FIRST VISIT BANNER
   ============================================ */
.banner-strip {
  background: linear-gradient(90deg, var(--gold-dk) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  padding: 0.85rem 2rem;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  font-weight: 500;
}

/* ============================================
   HOMEPAGE HERO
   ============================================ */
.home-hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(197,147,56,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 40%, rgba(197,147,56,0.05) 0%, transparent 55%),
    linear-gradient(180deg, #0C0907 0%, #1B1108 55%, #0C0907 100%);
}
.home-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,147,56,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,147,56,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.home-hero-content {
  position: relative;
  z-index: 2;
}
.home-hero-logo {
  width: 200px;
  height: auto;
  margin: 0 auto 2.5rem;
  animation: fadeUp 1s ease both;
}
.home-hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: 0.01em;
  animation: fadeUp 1s 0.15s ease both;
}
.home-hero-tagline em { font-style: italic; color: var(--gold-lt); }
.home-hero-sub {
  margin-top: 1.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  animation: fadeUp 1s 0.28s ease both;
}
.home-hero-divider {
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 2rem auto;
  animation: fadeUp 1s 0.38s ease both;
}
.home-hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.48s ease both;
}
.home-hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  animation: fadeUp 1s 0.8s ease both;
}
.home-hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.home-hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.35; }
  50%      { opacity: 0.9; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.8);
  transform-origin: center center;
  will-change: transform;
}

/* Ken Burns — each slide gets a different direction */
.hero-slide:nth-child(1).active img { animation: kb1 10s ease forwards; }
.hero-slide:nth-child(2).active img { animation: kb2 10s ease forwards; }
.hero-slide:nth-child(3).active img { animation: kb3 10s ease forwards; }
.hero-slide:nth-child(4).active img { animation: kb4 10s ease forwards; }
.hero-slide:nth-child(5).active img { animation: kb5 10s ease forwards; }

@keyframes kb1 {
  from { transform: scale(1)    translate(0, 0); }
  to   { transform: scale(1.09) translate(-1.5%, -0.8%); }
}
@keyframes kb2 {
  from { transform: scale(1.06) translate(-1%, 0.5%); }
  to   { transform: scale(1)    translate(1.2%, -0.5%); }
}
@keyframes kb3 {
  from { transform: scale(1)    translate(1%, 0.5%); }
  to   { transform: scale(1.08) translate(-0.8%, -1%); }
}
@keyframes kb4 {
  from { transform: scale(1.05) translate(0.5%, -0.5%); }
  to   { transform: scale(1)    translate(-1%, 1%); }
}
@keyframes kb5 {
  from { transform: scale(1)    translate(-0.5%, -0.5%); }
  to   { transform: scale(1.09) translate(1%, 1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(12,9,7,0.92) 0%, rgba(12,9,7,0.35) 45%, rgba(12,9,7,0.15) 100%),
    linear-gradient(to right, rgba(12,9,7,0.5) 0%, transparent 65%);
}

/* ============================================
   PHOTO STRIP (homepage)
   ============================================ */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 280px;
  gap: 2px;
}
.photo-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================
   HOMEPAGE SERVICES GRID
   ============================================ */
.home-services {
  padding: 7rem 3rem;
  background: var(--bg-2);
}
.home-services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  height: 560px;
  overflow: hidden;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
  filter: brightness(0.5) saturate(0.85);
}
.service-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.38) saturate(0.75);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,9,7,0.95) 0%, rgba(12,9,7,0.15) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem;
}
.service-card-num {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.service-card-line {
  width: 28px; height: 1px;
  background: var(--gold);
  margin-bottom: 0.9rem;
}
.service-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.service-card-desc {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(242,232,208,0.65);
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.45s ease;
  opacity: 0;
  margin-bottom: 0;
}
.service-card:hover .service-card-desc {
  max-height: 80px;
  opacity: 1;
}
.service-card-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dk);
  padding-bottom: 2px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.45s ease;
}
.service-card:hover .service-card-link {
  max-height: 30px;
  opacity: 1;
}

/* ============================================
   SERVICE PAGE HERO
   ============================================ */
.service-hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.service-hero-img {
  position: absolute;
  inset: 0;
}
.service-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(0.8);
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(12,9,7,1) 0%, rgba(12,9,7,0.5) 40%, rgba(12,9,7,0.1) 100%),
    linear-gradient(to right, rgba(12,9,7,0.6) 0%, transparent 60%);
}
.service-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 4rem 5rem;
  max-width: 760px;
}
.service-hero-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.service-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.service-hero-title em { font-style: italic; color: var(--gold-lt); }
.service-hero-tagline {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(242,232,208,0.7);
  line-height: 1.7;
  max-width: 480px;
}

/* ============================================
   SERVICE INTRO (2-col)
   ============================================ */
.service-intro {
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}
.service-intro.reverse { direction: rtl; }
.service-intro.reverse > * { direction: ltr; }

.service-intro-photo {
  position: relative;
}
.service-intro-photo img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}
.service-intro-photo::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: -1;
}
.service-intro-text p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: rgba(242,232,208,0.72);
  font-weight: 300;
  margin-top: 1.8rem;
}
.service-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

/* ============================================
   SERVICE MENU (offerings list)
   ============================================ */
.service-menu {
  padding: 5rem 4rem;
  background: var(--bg-2);
}
.service-menu-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.service-menu-header {
  margin-bottom: 3.5rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.menu-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border-lt);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.menu-item:nth-child(odd) { padding-right: 3rem; border-right: 1px solid var(--border-lt); }
.menu-item:nth-child(even) { padding-left: 3rem; }
.menu-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 3px;
  flex-shrink: 0;
}
.menu-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.menu-desc {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  padding: 6rem 3rem;
  background: var(--bg-3);
}
.gallery-header { margin-bottom: 3rem; text-align: center; }
.gallery-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-grid-3 .gallery-item {
  overflow: hidden;
  height: 320px;
}
.gallery-grid-3 .gallery-item.tall {
  grid-row: span 2;
  height: 642px;
}
.gallery-grid-3 .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.88);
}
.gallery-grid-3 .gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.02);
}

/* Gallery — hidden extra rows */
.gallery-more {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1300px;
  margin: 2px auto 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.9s ease, opacity 0.6s ease;
}
.gallery-more.open {
  max-height: 1200px;
  opacity: 1;
}
.gallery-more .gallery-item {
  overflow: hidden;
  height: 320px;
}
.gallery-more .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.88);
}
.gallery-more .gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.02);
}

/* See More button */
.gallery-see-more {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9rem 3rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.gallery-see-more:hover {
  border-color: var(--gold);
  background: rgba(197, 147, 56, 0.08);
  color: var(--gold-lt);
}

/* ============================================
   BOOKING CTA
   ============================================ */
.booking-cta {
  padding: 6rem 3rem;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,147,56,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,147,56,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.booking-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.booking-cta-badge {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 0.4rem 1.2rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.booking-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.booking-cta p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.booking-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: #1A5C37;
  color: #fff;
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
}
.btn-wa:hover { background: #1e7042; }

/* ============================================
   HOMEPAGE ABOUT SECTION
   ============================================ */
.home-about {
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}
.home-about-photo { position: relative; }
.home-about-photo img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.home-about-photo::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: -1;
}
.home-about-text p {
  margin-top: 1.8rem;
  font-size: 0.95rem;
  line-height: 1.95;
  color: rgba(242,232,208,0.72);
  font-weight: 300;
}
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--gold-lt);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  line-height: 1.55;
  margin: 2rem 0;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ============================================
   VISIT / HOURS SECTION
   ============================================ */
.visit-section {
  padding: 6rem 3rem;
  background: var(--bg-2);
}
.visit-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.visit-info-rows {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-top: 2.5rem;
}
.info-row {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.info-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
}
.info-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.info-value {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 300;
  line-height: 1.65;
}
.info-value a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(212,175,100,0.35);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.info-value a:hover { color: var(--gold-lt); border-color: var(--gold-lt); }
.hours-table {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1.8rem;
}
.hours-table .day {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hours-table .time {
  font-size: 0.88rem;
  color: var(--cream);
}
.visit-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.map-embed {
  height: 300px;
  border: 1px solid var(--border);
  overflow: hidden;
  filter: grayscale(30%) brightness(0.85);
  transition: filter 0.3s ease;
}
.map-embed:hover {
  filter: grayscale(0%) brightness(1);
}
.promo-card {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  padding: 2rem;
  text-align: center;
}
.promo-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--bg);
  line-height: 1;
}
.promo-label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0.78;
  margin-top: 0.4rem;
}
.promo-card a {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  text-decoration: none;
  border-bottom: 1px solid rgba(12,9,7,0.3);
  padding-bottom: 2px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 7rem 4rem;
  max-width: 1300px;
  margin: 0 auto;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-map .map-embed {
  height: 420px;
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3rem 3rem 2rem;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-lt);
}
.footer-logo img { height: 58px; opacity: 0.88; }
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-right { text-align: right; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-align: center;
}

/* ============================================
   REVIEWS SLIDER
   ============================================ */
.reviews-section {
  padding: 6rem 3rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.reviews-section::before {
  content: '\201C';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem;
  color: var(--gold);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.reviews-slider-wrap {
  max-width: 820px;
  margin: 3.5rem auto 0;
  position: relative;
}
.reviews-track { position: relative; min-height: 200px; }
.review-slide {
  display: none;
  animation: reviewFade 0.65s ease;
}
.review-slide.active { display: block; }
@keyframes reviewFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 2.2rem;
}
.review-author {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.review-source {
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.review-arrow {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 38px; height: 38px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-arrow:hover { border-color: var(--gold); color: var(--gold); }
.review-dots { display: flex; gap: 0.5rem; }
.review-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.review-dot.active { background: var(--gold); transform: scale(1.4); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.google-badge:hover { border-color: var(--gold); color: var(--gold-lt); }
.google-badge svg { width: 14px; height: 14px; }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.6rem 0.85rem 1.2rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 3.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
  animation: none;
}
.wa-float svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* Shrink pill slightly on small screens but keep text */
@media (max-width: 480px) {
  .wa-float { bottom: 1.2rem; right: 1.2rem; font-size: 0.72rem; padding: 0.75rem 1.1rem; gap: 0.55rem; }
  .wa-float svg { width: 18px; height: 18px; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { height: 440px; }
  .home-about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
  .home-about-photo img { height: 420px; }
  .visit-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-section { padding: 5rem 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-intro { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
  .service-intro.reverse { direction: ltr; }
  .service-intro-photo img { height: auto; max-height: 520px; object-fit: cover; width: 100%; }
  .gallery-grid-3 { grid-template-columns: 1fr 1fr; }
  .gallery-grid-3 .gallery-item.tall { grid-row: span 1; height: 320px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .menu-item:nth-child(even) { padding-left: 0; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-center { display: none; }
  .home-hero-logo { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 200px; }
  .photo-strip img:first-child { grid-column: span 2; height: 220px; }
  .photo-strip { grid-template-rows: 220px 180px; height: auto; }
  .home-services { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 400px; }
  .gallery-grid-3 { grid-template-columns: 1fr; }
  .gallery-grid-3 .gallery-item, .gallery-grid-3 .gallery-item.tall { height: 280px; grid-row: span 1; }
  .service-hero-content { padding: 2rem 1.5rem 4rem; }
  .service-menu { padding: 4rem 1.5rem; }
  .gallery-section { padding: 4rem 1.5rem; }
  .booking-cta { padding: 4rem 1.5rem; }
  .visit-section { padding: 4rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { display: flex; justify-content: center; }
  .footer-right { text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .footer-social { justify-content: center; }
  .about-stats { grid-template-columns: repeat(3, 1fr); text-align: center; }
}

@media (max-width: 480px) {
  .home-hero-btns { flex-direction: column; align-items: center; }
  .booking-btns { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr; }
}
