/* ===================== TOKENS ===================== */
:root {
  --bg-0: #0D0D0D;
  --bg-1: #161412;
  --bg-2: #1D1A16;
  --gold: #C59B27;
  --gold-light: #DAA520;
  --cream: #F5F1E8;
  --grey: #8A8478;
  --grey-dim: #55524A;
  --border: rgba(197, 155, 39, 0.18);
  --radius-s: 14px;
  --radius-m: 26px;
  --radius-pill: 999px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-inner.narrow { max-width: 760px; }

.section-head {
  max-width: 560px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-head p { color: var(--grey); font-size: 1.02rem; }

/* ===================== BUTTONS ===================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #171308;
  box-shadow: 0 0 0 rgba(218,165,32,0);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 28px rgba(218,165,32,0.35); }
.btn-ghost {
  border-color: rgba(245, 241, 232, 0.3);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* Pulsing rings for CTA buttons */
.pulse { position: relative; }
.pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--gold-light);
  animation: pulseRing 2.2s cubic-bezier(.4,0,.6,1) infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  80% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 24px 0;
  transition: padding 0.3s ease;
}
.site-header.scrolled { padding-top: 10px; }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 14px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(22, 20, 18, 0.62);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled .header-inner {
  background: rgba(13, 13, 13, 0.85);
  box-shadow: 0 14px 36px rgba(0,0,0,0.45);
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: var(--serif);
  font-size: 0.78rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.logo-text.small { font-size: 1.1rem; letter-spacing: 0.06em; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { color: var(--grey); transition: color 0.2s ease; }
.social-icons a:hover { color: var(--gold-light); transform: translateY(-2px); }
.social-icons a { display: inline-flex; transition: color 0.2s ease, transform 0.2s ease; }

.logo-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--gold-light);
  font-size: 0.95rem;
  box-shadow: 0 0 0 rgba(218,165,32,0.5);
  animation: logoGlow 3s ease-in-out infinite;
}
@keyframes logoGlow {
  0%,100% { box-shadow: 0 0 0 rgba(218,165,32,0); }
  50% { box-shadow: 0 0 14px rgba(218,165,32,0.55); }
}

.main-nav { position: relative; display: flex; gap: 6px; }
.main-nav a {
  position: relative;
  z-index: 1;
  padding: 9px 16px;
  font-size: 0.9rem;
  color: var(--grey);
  border-radius: var(--radius-pill);
  transition: color 0.25s ease;
}
.main-nav a:hover { color: var(--bg-0); }
.nav-indicator {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), width 0.35s cubic-bezier(.2,.8,.2,1), opacity 0.2s ease;
  z-index: 0;
}
.main-nav:hover .nav-indicator { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10,9,8,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: scale(1); }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease;
}
.mobile-menu.open .mobile-nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-nav a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav a span { font-family: var(--sans); font-size: 0.85rem; color: var(--gold-light); }
.mobile-nav a:hover { color: var(--gold-light); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--bg-0); }
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-video img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.65) 40%, var(--bg-0) 96%);
}

/* Animated aurora glow — plays under/instead of the video, keeps the hero alive at all times */
.aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; filter: blur(60px); opacity: 0.55; }
.aurora-blob {
  position: absolute;
  width: 45vw; height: 45vw;
  border-radius: 50%;
  mix-blend-mode: screen;
}
.aurora-blob.b1 { background: radial-gradient(circle, var(--gold) 0%, transparent 70%); top: -10%; left: -10%; animation: floatBlob1 18s ease-in-out infinite; }
.aurora-blob.b2 { background: radial-gradient(circle, #7a5b12 0%, transparent 70%); bottom: -15%; right: -5%; animation: floatBlob2 22s ease-in-out infinite; }
.aurora-blob.b3 { background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%); top: 30%; left: 40%; animation: floatBlob3 26s ease-in-out infinite; }
@keyframes floatBlob1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(8vw,6vh) scale(1.15); } }
@keyframes floatBlob2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-6vw,-8vh) scale(1.1); } }
@keyframes floatBlob3 { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-45%,-55%) scale(1.2); } }

/* Subtle film grain for a "moving video" texture even without footage */
.grain {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-2%,2%); }
  50% { transform: translate(2%,-2%); }
  75% { transform: translate(-1%,-1%); }
  100% { transform: translate(0,0); }
}

/* Custom cursor glow following the pointer in the hero */
.cursor-glow {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(circle, rgba(218,165,32,0.13), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  opacity: 0;
  animation: heroReveal 0.9s ease forwards 0.15s;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-kicker {
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 1.02;
  max-width: 760px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold), #fff2c4, var(--gold-light), var(--gold));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: -300% center; } }
.hero-sub {
  max-width: 460px;
  margin-top: 24px;
  color: var(--grey);
  font-size: 1.08rem;
}
.hero-cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

.hero-strip {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 60px auto 0;
  width: 100%;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--grey);
  font-size: 0.92rem;
}
.strip-item { display: flex; align-items: center; gap: 8px; color: var(--gold-light); }
.strip-item svg { color: var(--gold-light); }
.strip-divider { width: 1px; height: 16px; background: var(--border); }

/* ===================== ADVANTAGES ===================== */
.advantages { padding: 100px 0; background: var(--bg-0); }
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.adv-card {
  background: var(--bg-0);
  padding: 32px 28px;
  transition: background 0.2s ease, transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.adv-card:hover { background: var(--bg-1); transform: translateY(-6px); }

/* Scroll-reveal: JS toggles .in-view once an element enters the viewport */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.adv-icon { color: var(--gold-light); margin-bottom: 18px; }
.adv-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.adv-card p { color: var(--grey); font-size: 0.93rem; }

/* ===================== SERVICES ===================== */
.services { padding: 100px 0; background: var(--bg-1); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--bg-0);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}
.service-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(197,155,39,0.08), transparent 60%);
  animation: featuredGlow 3.5s ease-in-out infinite;
}
@keyframes featuredGlow {
  0%,100% { box-shadow: 0 0 0 rgba(218,165,32,0); }
  50% { box-shadow: 0 0 26px rgba(218,165,32,0.25); }
}
.service-tag {
  position: absolute;
  top: -11px; left: 24px;
  background: var(--gold-light);
  color: #171308;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.service-icon { color: var(--gold-light); flex-shrink: 0; }
.service-body { flex: 1; }
.service-body h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }
.service-body p { color: var(--grey); font-size: 0.9rem; }
.service-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  text-align: right;
  flex-shrink: 0;
}
.service-price span { display: block; font-family: var(--sans); font-size: 0.7rem; color: var(--grey); font-weight: 400; }

/* ===================== GIFT BANNER ===================== */
.gift-banner {
  padding: 70px 0;
  background: linear-gradient(120deg, #1a1712, #0D0D0D 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gift-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gift-text h2 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 8px; }
.gift-text p { color: var(--grey); max-width: 440px; }

/* ===================== GALLERY ===================== */
.gallery { padding: 100px 0; background: var(--bg-0); }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  flex: 0 0 auto;
  width: 300px;
  height: 260px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(.2,.8,.2,1); }
.gallery-item:hover img { transform: scale(1.08) rotate(0.5deg); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  font-family: var(--serif);
  font-size: 0.95rem;
}

/* ===================== FAQ ===================== */
.faq { padding: 100px 0; background: var(--bg-1); }
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-family: var(--serif);
  font-size: 1.08rem;
  cursor: pointer;
  text-align: left;
}
.accordion-icon {
  color: var(--gold-light);
  font-size: 1.3rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-panel p { color: var(--grey); padding: 0 4px 22px; max-width: 600px; }

/* ===================== REVIEWS ===================== */
.reviews { padding: 100px 0; background: var(--bg-0); overflow: hidden; }
.marquee-reverse .marquee-track { animation-name: marqueeScrollReverse; animation-duration: 40s; }
@keyframes marqueeScrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.review-card {
  flex: 0 0 auto;
  width: 340px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 26px;
  background: var(--bg-1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.stars { color: var(--gold-light); letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { color: var(--cream); font-size: 0.95rem; margin-bottom: 16px; }
.review-author { color: var(--grey); font-size: 0.85rem; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--bg-1); border-top: 1px solid var(--border); }
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 90px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.footer-info h2 { font-family: var(--serif); font-size: 2rem; margin-bottom: 28px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: var(--grey); }
.contact-list svg { color: var(--gold-light); flex-shrink: 0; }
.footer-map { height: 320px; border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--border); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--grey-dim); font-size: 0.82rem; }

/* ===================== FLOATING BUTTONS ===================== */
.fab {
  position: fixed;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}
.fab:hover { transform: scale(1.06); }
.fab-call {
  left: 24px; bottom: 24px;
  width: 54px; height: 54px;
  background: var(--bg-2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.fab-book {
  right: 24px; bottom: 24px;
  width: 82px; height: 82px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #171308;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-map { height: 260px; }
}

@media (max-width: 560px) {
  .hero-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
  .strip-divider { display: none; }
  .gift-inner { flex-direction: column; align-items: flex-start; }
  .fab-book { width: 68px; height: 68px; font-size: 0.68rem; }
  .adv-card, .service-card { padding: 22px; }
}