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

:root {
  --black: #080808;
  --dark: #111111;
  --dark2: #181818;
  --gold: #C4A35A;
  --gold-light: #E8D5A3;
  --gold-dark: #8B7339;
  --white: #F5F0E8;
  --white2: #EDE8DE;
  --grey: #888888;
  --grey-light: #CCCCCC;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ===================== CUSTOM CURSOR ===================== */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(196, 163, 90, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease);
}
.cursor-hover .cursor { width: 14px; height: 14px; background: var(--gold-light); }
.cursor-hover .cursor-ring { width: 56px; height: 56px; border-color: rgba(196,163,90,0.3); }

/* ===================== LOADER ===================== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--white);
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) 0.3s forwards;
}
.loader-logo span { color: var(--gold); }
.loader-line {
  width: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: expandLine 1.6s var(--ease) 0.6s forwards;
}
.loader-text {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--grey);
  opacity: 0;
  animation: fadeIn 0.8s ease 1.2s forwards;
}

@keyframes expandLine { to { width: 240px; } }
@keyframes fadeInUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:0.8; } }

/* ===================== NAVBAR ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.6s, padding 0.5s, border-color 0.6s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 18px 56px;
  border-bottom-color: rgba(196, 163, 90, 0.12);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 13px 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-burger span {
  width: 26px; height: 1px;
  background: var(--white);
  transition: transform 0.4s, opacity 0.4s;
  display: block;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 4.5vw, 1.3rem);
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ===================== HERO ===================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  transition: transform 9s ease;
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.6) 0%,
    rgba(8,8,8,0.25) 40%,
    rgba(8,8,8,0.65) 75%,
    rgba(8,8,8,0.97) 100%
  );
}
.hero-overlay-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  max-width: 960px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease) 1.8s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 44px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--gold)); }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 1.1s var(--ease) 2s forwards;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease) 2.2s forwards;
  letter-spacing: 0.03em;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s var(--ease) 2.4s forwards;
}
.hero-rating {
  position: absolute;
  bottom: 120px;
  right: 56px;
  text-align: right;
  opacity: 0;
  animation: fadeIn 1s ease 3.2s forwards;
}
.hero-rating-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; }
.hero-rating-text {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 6px;
}
.btn-primary {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 19px 48px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(196, 163, 90, 0.35);
}
.btn-ghost {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.65);
  padding: 19px 48px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 3s forwards;
}
.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.5rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--grey);
}
.scroll-line {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2.5s ease infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ===================== COMMON SECTION ===================== */
.section-label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--grey-light);
  max-width: 520px;
  line-height: 1.85;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ===================== ABOUT ===================== */
#about {
  padding: 140px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}
.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: visible;
}
.about-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.9s var(--ease), filter 0.9s;
  display: block;
}
.about-image-wrap:hover .about-image-main {
  transform: scale(1.03);
  filter: grayscale(0%);
}
.about-image-frame {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(196, 163, 90, 0.35);
  pointer-events: none;
  z-index: -1;
}
.about-image-frame-top {
  position: absolute;
  top: -16px; left: -16px;
  width: 40%;
  aspect-ratio: 1;
  border-top: 1px solid rgba(196,163,90,0.25);
  border-left: 1px solid rgba(196,163,90,0.25);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  top: 40px;
  left: -28px;
  background: var(--gold);
  color: var(--black);
  padding: 22px 24px;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
}
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  display: block;
}
.about-badge-text {
  font-family: var(--font-display);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}
.about-text { padding: 20px 0; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid rgba(196, 163, 90, 0.15);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ===================== SERVICES ===================== */
#services {
  background: var(--dark);
  padding: 120px 56px;
}
.services-inner { max-width: 1500px; margin: 0 auto; }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.9s;
  filter: grayscale(25%) brightness(0.72);
}
.service-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(0.45);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.97) 25%, rgba(8,8,8,0.2) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 36px;
}
.service-card-label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.service-card-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.service-card-desc {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), opacity 0.5s;
  opacity: 0;
  line-height: 1.7;
}
.service-card:hover .service-card-desc { max-height: 120px; opacity: 1; }

/* ===================== PRICE LIST ===================== */
#prices {
  padding: 120px 56px;
  background: var(--black);
}
.prices-inner { max-width: 1500px; margin: 0 auto; }
.price-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(196, 163, 90, 0.12);
  flex-wrap: wrap;
}
.price-tab {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 18px 36px;
  cursor: pointer;
  transition: color 0.3s;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  white-space: nowrap;
  margin-bottom: -1px;
}
.price-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.price-tab:hover { color: var(--white2); }
.price-panel { display: none; }
.price-panel.active { display: block; animation: panelFade 0.4s var(--ease); }
@keyframes panelFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 24px;
  transition: all 0.35s;
}
.price-item:hover { padding-left: 16px; background: rgba(196,163,90,0.03); }
.price-item-name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--white2);
}
.price-item-name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--grey);
  font-weight: 300;
  margin-top: 3px;
}
.price-item-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}
.price-item-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  white-space: nowrap;
  min-width: 90px;
  text-align: right;
}

/* ===================== GALLERY ===================== */
#gallery {
  background: var(--dark2);
  padding: 120px 56px;
}
.gallery-inner { max-width: 1500px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 72px; }
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-label::before { display: none; }
.gallery-header .section-label::after { content: ''; width: 28px; height: 1px; background: var(--gold); }
.gallery-grid {
  columns: 3;
  column-gap: 4px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.7s var(--ease), filter 0.7s;
  filter: grayscale(8%);
}
.gallery-item:hover img { transform: scale(1.05); filter: grayscale(0%); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.45);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg {
  width: 36px; height: 36px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 28px; right: 32px;
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-close svg { width: 28px; height: 28px; stroke: white; fill: none; stroke-width: 1.5; stroke-linecap: round; }

/* ===================== TEAM ===================== */
#team {
  padding: 120px 56px;
  max-width: 1500px;
  margin: 0 auto;
}
.team-header { margin-bottom: 80px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.team-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(50%) brightness(0.82);
  transition: all 0.8s var(--ease);
}
.team-card:hover img { filter: grayscale(0%) brightness(0.55); transform: scale(1.06); }
.team-card-name-static {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(245,240,232,0.45);
  font-weight: 300;
  letter-spacing: 0.06em;
  transition: opacity 0.5s;
}
.team-card:hover .team-card-name-static { opacity: 0; }
.team-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 28px;
  background: linear-gradient(to top, rgba(8,8,8,0.96) 55%, transparent);
  transform: translateY(18px);
  opacity: 0;
  transition: all 0.55s var(--ease);
}
.team-card:hover .team-card-info { transform: none; opacity: 1; }
.team-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 5px;
}
.team-role {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===================== TESTIMONIALS ===================== */
#testimonials {
  background: var(--dark);
  padding: 120px 56px;
  text-align: center;
}
.testimonials-inner { max-width: 860px; margin: 0 auto; }
.testimonials-slider { position: relative; min-height: 300px; }
.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s var(--ease);
  pointer-events: none;
}
.testimonial-slide.active { opacity: 1; transform: none; pointer-events: all; }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 4px; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white2);
  line-height: 1.65;
  max-width: 720px;
}
.testimonial-text::before { content: '\201C'; color: var(--gold); font-size: 1.2em; }
.testimonial-text::after { content: '\201D'; color: var(--gold); font-size: 1.2em; }
.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--grey);
}
.testimonial-dots {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 56px;
}
.testimonial-dot {
  width: 5px; height: 5px;
  background: var(--grey);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.35s;
}
.testimonial-dot.active { background: var(--gold); transform: scale(1.5); }

/* ===================== BOOKING CTA ===================== */
#booking {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 180px 56px;
}
#booking::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.18) grayscale(20%);
}
#booking::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,163,90,0.06) 0%, transparent 70%);
}
.booking-inner { position: relative; z-index: 1; }
.booking-eyebrow {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}
.booking-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.booking-title em { font-style: italic; color: var(--gold-light); }
.booking-desc {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.65);
  margin-bottom: 64px;
  font-weight: 300;
  line-height: 1.85;
}
.booking-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-wa {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: #25D366;
  border: none;
  padding: 19px 48px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s var(--ease);
}
.btn-wa:hover { background: #20bd5a; transform: translateY(-3px); box-shadow: 0 24px 64px rgba(37,211,102,0.35); }
.btn-wa svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }

/* ===================== CONTACT ===================== */
#contact {
  padding: 120px 56px;
  background: var(--dark);
}
.contact-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 26px;
  margin-bottom: 44px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(196,163,90,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 19px; height: 19px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.contact-label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 7px;
}
.contact-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white2);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  line-height: 1.5;
}
a.contact-value:hover { color: var(--gold); }
.schedule-list { margin-top: 6px; }
.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.schedule-day { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.08em; color: var(--grey-light); }
.schedule-hours { font-family: var(--font-serif); color: var(--white2); }
.map-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid rgba(196,163,90,0.12);
  overflow: hidden;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(80%) invert(10%); }
.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--dark2);
  border: 1px solid rgba(196,163,90,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px;
  color: var(--grey);
  font-size: 0.85rem; font-family: var(--font-display);
  letter-spacing: 0.1em;
}
.map-placeholder svg { width: 32px; height: 32px; stroke: rgba(196,163,90,0.4); fill: none; stroke-width: 1.5; }
.social-row { display: flex; gap: 14px; margin-top: 36px; align-items: center; }
.social-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(196,163,90,0.3);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.3s; flex-shrink: 0;
}
.social-btn:hover { border-color: var(--gold); background: rgba(196,163,90,0.08); }
.social-btn svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; }

/* ===================== FOOTER ===================== */
footer {
  border-top: 1px solid rgba(196,163,90,0.1);
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.07em;
}
.footer-logo span { color: var(--gold); }
.footer-nav { display: flex; gap: 32px; list-style: none; flex-wrap: wrap; }
.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--grey);
}

/* ===================== WA FLOAT ===================== */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 4px 28px rgba(37,211,102,0.45);
  transition: all 0.35s var(--ease);
  animation: waPulse 3.5s ease infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 48px rgba(37,211,102,0.65); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 28px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  #about { grid-template-columns: 1fr; gap: 60px; padding: 100px 40px; }
  .about-image-wrap { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 900px) {
  nav { padding: 20px 28px; }
  nav.scrolled { padding: 14px 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
  #services { padding: 100px 28px; }
  #prices { padding: 100px 28px; }
  #gallery { padding: 100px 28px; }
  #team { padding: 100px 28px; }
  #contact { padding: 100px 28px; }
  footer { padding: 40px 28px; flex-direction: column; text-align: center; align-items: center; }
  .footer-nav { justify-content: center; }
  .about-badge { left: 0; }
  .gallery-grid { columns: 2; }
  .price-tabs { overflow-x: auto; }
  .price-tab { padding: 14px 20px; }
  .hero-rating { display: none; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .booking-actions { flex-direction: column; align-items: center; }
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  #booking { padding: 120px 28px; }
  #testimonials { padding: 100px 28px; }
}
@media (max-width: 400px) {
  .team-grid { grid-template-columns: 1fr; }
}
