/* ═══════════════════════════════════════════════
   Unika — Preloader stylesheet
   Black background · Golden Cinzel typography
   Typing animation · Responsive
═══════════════════════════════════════════════ */

/* ── Boston Angel — place font file in media/fonts/ ── */
@font-face {
  font-family: 'Boston Angel';
  src: url('../media/fonts/BostonAngel.woff2') format('woff2'),
       url('../media/fonts/BostonAngel.woff')  format('woff'),
       url('../media/fonts/BostonAngel.ttf')   format('truetype'),
       url('../media/fonts/BostonAngel.otf')   format('opentype');
  font-weight: normal;
  font-style:  normal;
  font-display: block;
}

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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #000;
}

/* Unlock scroll once preloader exits */
body.site-ready {
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
}
html.site-ready {
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

/* ── Preloader wrapper ── */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Dark gradient overlay – bottom-to-top so gold text pops */
#preloader::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 55%, rgba(0,0,0,0.62) 0%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.50) 35%, rgba(0,0,0,0.10) 70%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── Inner centered block ── */
.pre-inner {
  text-align: center;
  padding: 0 24px;
  margin-top: 16vh;
  animation: fade-in 1s ease forwards;
}

.pre-logo-wrap {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
}


.pre-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -8% -35%;
  pointer-events: none;
  background: linear-gradient(
    108deg,
    rgba(255, 255, 255, 0) 34%,
    rgba(255, 255, 255, 0.08) 46%,
    rgba(255, 255, 255, 0.30) 50%,
    rgba(255, 255, 255, 0.07) 54%,
    rgba(255, 255, 255, 0) 66%
  );
  transform: translateX(-120%) skewX(-12deg);
  opacity: 0;
}

body.first-visit .pre-logo-wrap::after {
  animation: logo-sweep 1.25s ease-out 0.8s both;
}

.pre-inner:hover .pre-logo-wrap::after,
.pre-logo-wrap:hover::after {
  animation: logo-sweep 0.95s ease-out both;
}

.pre-logo {
  width: min(42vw, 280px);
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(18px) scale(0.94);
  filter: saturate(1.06) contrast(1.02) drop-shadow(0 16px 32px rgba(0, 0, 0, 0.48));
  animation: logo-appear 1.45s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.6s ease;
  will-change: transform, filter;
}

body.first-visit .pre-logo {
  animation:
    logo-appear 1.7s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards,
    logo-cinematic-drift 6.8s ease-in-out 1.85s infinite;
}

.pre-inner:hover .pre-logo,
.pre-logo:hover {
  transform: translateY(-6px) scale(1.045);
  filter: saturate(1.14) brightness(1.05) contrast(1.03) drop-shadow(0 22px 42px rgba(0, 0, 0, 0.62));
}

@keyframes logo-cinematic-drift {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: saturate(1.08) contrast(1.02) drop-shadow(0 16px 32px rgba(0, 0, 0, 0.48));
  }
  45% {
    transform: translateY(-3px) scale(1.013) rotate(-0.12deg);
    filter: saturate(1.13) brightness(1.02) contrast(1.03) drop-shadow(0 20px 38px rgba(0, 0, 0, 0.56));
  }
  72% {
    transform: translateY(-1px) scale(1.006) rotate(0.08deg);
  }
}

@keyframes logo-sweep {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-12deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120%) skewX(-12deg);
  }
}


@keyframes logo-appear {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.9);
    filter: saturate(0.85) contrast(0.95) blur(2px) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
  }
  62% {
    opacity: 1;
    transform: translateY(-4px) scale(1.028);
    filter: saturate(1.18) contrast(1.04) blur(0) drop-shadow(0 22px 40px rgba(0, 0, 0, 0.62));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1.08) contrast(1.02) blur(0) drop-shadow(0 16px 32px rgba(0, 0, 0, 0.48));
  }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── "Celebrations by" sub-label ── */
.pre-sub {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: clamp(0.65rem, 2vw, 0.9rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #b8902a;
  margin-bottom: 14px;
  opacity: 0;
  animation: fade-in 1s ease 0.4s forwards;
}

/* ── Main "UNIKA" title – sizing only ── */
.pre-title {
  font-family: 'Boston Angel', 'Cinzel Decorative', serif;
  font-weight: normal;
  font-size: clamp(3rem, 12vw, 9rem);
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  display: block;
}

/* ── Typed text wrapper ── */
.pre-typed {
  font-family: 'Boston Angel', 'Cinzel Decorative', serif;
  font-weight: normal;
  font-size: inherit;
  letter-spacing: inherit;
}

/* Each letter – hidden until JS adds .visible */
.pre-letter {
  display: inline-block;
  opacity: 0;
  transform: perspective(500px) rotateX(-80deg) translateY(10px);
  transform-origin: 50% 100%;
  transition:
    opacity   0.50s ease,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);

  /* Gold gradient on every individual letter */
  background: linear-gradient(
    105deg,
    #5c3d0a 0%,
    #b8902a 25%,
    #f0d080 45%,
    #e8c55a 50%,
    #f0d080 55%,
    #b8902a 75%,
    #5c3d0a 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 5s linear infinite;
}

.pre-letter.visible {
  opacity: 1;
  transform: perspective(500px) rotateX(0deg) translateY(0);
}

@keyframes gold-shimmer {
  0%   { background-position: 0%   center; }
  100% { background-position: 250% center; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Gold divider with diamond ── */
.pre-divider {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  animation: fade-in 1s ease 1s forwards;
}

.pre-divider::before,
.pre-divider::after {
  content: '';
  display: block;
  width: clamp(60px, 15vw, 140px);
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a84c);
}
.pre-divider::after {
  background: linear-gradient(to left, transparent, #c9a84c);
}

.pre-diamond {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #c9a84c;
  transform: rotate(45deg);
  margin: 0 12px;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.7);
  animation: diamond-pulse 2.5s ease-in-out infinite;
}

@keyframes diamond-pulse {
  0%, 100% { box-shadow: 0 0 6px  rgba(201, 168, 76, 0.6); }
  50%       { box-shadow: 0 0 18px rgba(201, 168, 76, 1);   }
}

/* ── Responsive tweaks ── */
@media (max-width: 480px) {
  .pre-logo { width: min(42vw, 190px); }
}

/* ── Instagram handle – below divider, inline with centered block ── */
.pre-instagram {
  display: inline-flex;
  margin-top: clamp(24px, 4vh, 40px);
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: clamp(0.65rem, 1.5vw, 0.82rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  animation: fade-in 1s ease 1.4s forwards;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.pre-instagram i {
  font-size: 1.2em;
  color: #fff;
  -webkit-text-fill-color: #fff;
  line-height: 1;
}

/* ── Background image – full cover ── */
.bg-blob {
  position: absolute;
  inset: -50px;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: blob-reveal 2.4s ease 0.3s forwards;
  will-change: transform, opacity;
}

@keyframes blob-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Keep content above the overlay */
.pre-inner {
  position: relative;
  z-index: 2;
}
.scroll-hint {
  z-index: 2;
}

/* ── Premium scroll indicator ── */
.scroll-hint {
  position: absolute;
  bottom: clamp(24px, 4vh, 44px);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-in 1s ease 2.2s forwards;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(201, 168, 76, 0.55);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 5px;
}

.scroll-dot {
  width: 3px;
  height: 6px;
  background: #c9a84c;
  border-radius: 2px;
  animation: scroll-drift 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes scroll-drift {
  0%   { transform: translateY(0);    opacity: 1;   }
  55%  { transform: translateY(13px); opacity: 0.2; }
  56%  { transform: translateY(0);    opacity: 0;   }
  70%  { transform: translateY(0);    opacity: 1;   }
  100% { transform: translateY(0);    opacity: 1;   }
}

.scroll-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.55);
  margin: 0;
}


/* ═══════════════════════════════════════════════
   Preloader exit
═══════════════════════════════════════════════ */
#preloader {
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
#preloader.preloader-exit {
  opacity: 0;
  transform: translateY(-6vh);
  pointer-events: none;
}


/* ═══════════════════════════════════════════════
   Site sections
═══════════════════════════════════════════════ */
#site-main {
  position: relative;
}

.site-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #070707;
}

/* Section background image – set via JS or inline style */
.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: opacity 1.2s ease;
}

/* Dark gradient overlay so text is always readable */
.site-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 55%, rgba(0,0,0,0.55) 0%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.20) 60%, transparent 100%);
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-section.in-view .section-inner {
  opacity: 1;
  transform: translateY(0);
}

.section-sub {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: clamp(0.55rem, 1.5vw, 0.75rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #b8902a;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 7vw, 6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(105deg, #5c3d0a 0%, #b8902a 25%, #f0d080 50%, #b8902a 75%, #5c3d0a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 6s linear infinite;
}

.section-divider {
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-divider::before,
.section-divider::after {
  content: '';
  display: block;
  width: clamp(40px, 10vw, 100px);
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a84c);
}
.section-divider::after {
  background: linear-gradient(to left, transparent, #c9a84c);
}
.section-diamond {
  display: inline-block;
  width: 6px; height: 6px;
  background: #c9a84c;
  transform: rotate(45deg);
  margin: 0 12px;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.7);
}

.section-body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  line-height: 1.9;
  color: rgba(255,255,255,0.70);
  max-width: 540px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════
   About section – split hero / cream layout
   ═══════════════════════════════════════════════ */

#s-about {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: #f0ebe0;
  overflow: hidden;
  height: 100vh;
  min-height: 100vh;
}

/* Remove the global dark gradient overlay on this section */
#s-about::after { display: none; }

/* ── Venue hero photo ── */
.ab-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 46vh;
  overflow: hidden;
  flex-shrink: 0;
}

.ab-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.ab-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  image-rendering: high-quality;
}

/* ── Three white-framed portrait photos ── */
.ab-portraits-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(10px, 2vw, 22px);
  margin-top: clamp(-60px, -9vh, -90px);
  position: relative;
  z-index: 5;
  padding: 0 clamp(20px, 8vw, 120px);
}

.ab-portrait {
  background: #fff;
  padding: 7px;
  flex-shrink: 0;
  box-shadow: 0 18px 52px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.12);
  overflow: hidden;
}

.ab-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: high-quality;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.ab-portrait:hover img { transform: scale(1.05); }

.ab-portrait--sm {
  width: clamp(90px, 11vw, 155px);
  height: clamp(130px, 18vh, 210px);
  margin-bottom: clamp(18px, 3vh, 40px);
}

.ab-portrait--lg {
  width: clamp(115px, 15vw, 200px);
  height: clamp(175px, 26vh, 295px);
}

/* Stagger entry — handled by GSAP in main.js */

/* ── Cream text area ── */
.ab-cream {
  background: #f0ebe0;
  text-align: center;
  padding: clamp(32px, 4.6vh, 56px) clamp(20px, 8vw, 160px) clamp(18px, 2.8vh, 32px);
}

/* Cream reveal — handled by GSAP in main.js */

.ab-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 0.96;
  color: #7a1212;
  margin-bottom: clamp(12px, 2vh, 24px);
}

.ab-body {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.9rem, 1.35vw, 1.1rem);
  line-height: 1.5;
  color: #7b3a3a;
  max-width: 760px;
  margin: 0 auto;
  font-weight: 500;
}

/* ── About responsive ── */
@media (max-width: 768px) {
  #s-about {
    height: auto;
    min-height: auto;
  }

  .ab-hero { height: 40vh; }

  .ab-portraits-row {
    gap: 8px;
    padding: 0 clamp(12px, 4vw, 32px);
    margin-top: clamp(-48px, -8vh, -68px);
  }

  .ab-portrait--sm {
    width: clamp(80px, 20vw, 130px);
    height: clamp(110px, 16vh, 185px);
    margin-bottom: clamp(12px, 2.5vh, 28px);
  }

  .ab-portrait--lg {
    width: clamp(100px, 26vw, 165px);
    height: clamp(155px, 23vh, 255px);
  }
}

@media (max-width: 480px) {
  .ab-hero { height: 34vh; }

  .ab-portraits-row {
    margin-top: clamp(-36px, -6vh, -50px);
    padding: 0 10px;
    gap: 6px;
  }

  .ab-portrait { padding: 5px; }

  .ab-portrait--sm {
    width: clamp(64px, 22vw, 96px);
    height: clamp(92px, 14vh, 140px);
    margin-bottom: clamp(8px, 2vh, 18px);
  }

  .ab-portrait--lg {
    width: clamp(80px, 28vw, 120px);
    height: clamp(125px, 20vh, 190px);
  }

  .ab-cream {
    padding-left: clamp(14px, 5vw, 24px);
    padding-right: clamp(14px, 5vw, 24px);
  }
}

/* ═══════════════════════════════════════════════
   Left side navigation – scroll-progress line
═══════════════════════════════════════════════ */
#side-nav {
  position: fixed;
  left: clamp(18px, 3vw, 42px);
  top: 50%;
  transform: translateY(-50%);
  height: 62vh;
  width: 138px;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease 0.3s;
}

body.site-ready #side-nav {
  opacity: 1;
  pointer-events: auto;
}

#left-brand,
#quick-contact {
  position: fixed;
  z-index: 620;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.35s ease;
}

body.site-ready #left-brand,
body.site-ready #quick-contact {
  opacity: 1;
  pointer-events: auto;
}

body.brand-fly #left-brand {
  opacity: 0 !important;
  pointer-events: none !important;
}

#left-brand {
  left: clamp(14px, 2.3vw, 34px);
  top: clamp(16px, 2.8vh, 30px);
  transform: translateY(-4px);
}

body.site-ready #left-brand {
  transform: translateY(0);
}

#left-brand img {
  width: clamp(44px, 5.2vw, 68px);
  height: auto;
  display: block;
  filter: none;
  border: none;
  border-radius: 0;
  background: transparent;
  transition: transform 0.35s ease;
}

#left-brand:hover img {
  transform: translateY(-2px) scale(1.03);
}

#quick-contact {
  position: fixed;
  right: clamp(14px, 2.4vw, 36px);
  top: clamp(16px, 2.8vh, 30px);
  z-index: 620;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

body.site-ready #quick-contact {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes ct-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.62); }
}

#contact-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 20px 13px 24px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.42);
  background: rgba(255, 255, 255, 0.95);
  color: #0a0a10;
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.65rem, 1.05vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

#contact-trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.52) 0%, transparent 54%);
  pointer-events: none;
}

.ct-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e03030;
  flex-shrink: 0;
  align-self: center;
  animation: ct-dot-pulse 2.8s ease-in-out infinite;
}

#contact-trigger:hover {
  background: #fff;
  transform: scale(1.04) translateY(-1px);
  border-color: rgba(201, 168, 76, 0.88);
}

#contact-trigger:hover .ct-dot {
  animation: none;
  opacity: 1;
}

#contact-trigger:active {
  transform: scale(0.97);
  border-color: rgba(201, 168, 76, 0.62);
}

body.contact-open #contact-trigger {
  background: rgba(255,255,255,0.78);
  pointer-events: none;
}

#contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  z-index: 799;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}

body.contact-open #contact-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ── Half-screen contact panel ── */
#contact-panel {
  position: fixed;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: auto;
  width: clamp(280px, 48vw, 640px);
  background: #f5f4f2;
  border-radius: 25px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3.5vh, 40px) clamp(28px, 5vw, 64px) clamp(28px, 4.5vh, 48px);
  opacity: 0;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 30px) 52px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), clip-path 0.85s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
  box-shadow: -24px 0 64px rgba(0,0,0,0.14), -4px 0 16px rgba(0,0,0,0.08);
}

body.contact-open #contact-panel {
  opacity: 1;
  pointer-events: auto;
  clip-path: circle(150% at calc(100% - 30px) 52px);
}

#contact-close {
  position: absolute;
  top: clamp(18px, 3vh, 28px);
  right: clamp(18px, 3vw, 28px);
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0,0,0,0.45);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.22s ease;
  z-index: 2;
}

#contact-close:hover {
  color: rgba(0,0,0,0.7);
}

.close-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0a0a0a;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #fff;
  transition: all 0.22s ease;
  flex-shrink: 0;
}

#contact-close:hover .close-circle {
  background: #c0282a;
  transform: rotate(90deg);
}

/* Panel nav — big Cinzel links */
.cpanel-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 52px;
}

@keyframes cpanel-link-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cpanel-link {
  display: block;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  padding: 0.06em 0 0.14em;
  position: relative;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

/* animated underline — gold gradient, expands from left */
.cpanel-link::after {
  content: '';
  position: absolute;
  bottom: -0.08em;
  left: 0;
  width: 20%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #c0282a 0%, #e8474a 45%, #c0282a 100%);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.52s cubic-bezier(0.22,1,0.36,1), background-position 0.8s ease;
}

.cpanel-link:hover {
  opacity: 0.7;
  transform: translateX(5px);
}

.cpanel-link:hover::after {
  transform: scaleX(1);
  background-position: 100% 0;
}

body.contact-open .cpanel-link:nth-child(1) { animation: cpanel-link-in 0.65s cubic-bezier(0.22,1,0.36,1) 0.12s both; }
body.contact-open .cpanel-link:nth-child(2) { animation: cpanel-link-in 0.65s cubic-bezier(0.22,1,0.36,1) 0.22s both; }
body.contact-open .cpanel-link:nth-child(3) { animation: cpanel-link-in 0.65s cubic-bezier(0.22,1,0.36,1) 0.32s both; }

/* Panel footer */
.cpanel-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: clamp(14px, 2.5vh, 26px);
}

body.contact-open .cpanel-footer {
  animation: cpanel-link-in 0.65s cubic-bezier(0.22,1,0.36,1) 0.40s both;
}

.cpanel-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.82rem, 1.3vw, 0.98rem);
  font-weight: 600;
  color: rgba(0,0,0,0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.22s ease;
}

.cpanel-phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cpanel-phone-sep {
  color: rgba(0,0,0,0.34);
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.82rem, 1.3vw, 0.98rem);
  font-weight: 600;
}

.cpanel-phone--plain {
  gap: 0;
}

.cpanel-phone:hover {
  color: rgba(0,0,0,0.9);
}

.cpanel-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 500;
  color: rgba(0,0,0,0.45);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.22s ease;
}

.cpanel-email:hover {
  color: rgba(0,0,0,0.8);
}

.cpanel-phone i,
.cpanel-email i {
  font-size: 0.9em;
  opacity: 0.9;
}

.cpanel-socials {
  display: flex;
  gap: 10px;
}

.cpanel-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0a0a0a;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.24s ease;
}

.cpanel-socials a:hover {
  background: #333;
  transform: scale(1.1);
}

/* Dim background track */
.side-track {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.12);
}

.side-live-connector {
  position: absolute;
  left: 0;
  width: 1px;
  height: 0;
  opacity: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.68),
    rgba(255, 255, 255, 0.16)
  );
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.28);
  transition: top 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease;
}

.side-live-connector.active {
  opacity: 1;
}

.side-live-dot {
  --travel: 40px;
  position: absolute;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.72);
  opacity: 0;
}

.side-live-dot.active {
  opacity: 1;
  animation: side-dot-travel 1.85s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes side-dot-travel {
  0% {
    transform: translateY(0) scale(0.95);
    opacity: 0.65;
  }
  50% {
    transform: translateY(calc(var(--travel) * 0.52)) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateY(var(--travel)) scale(0.95);
    opacity: 0.65;
  }
}

/* Each section label */
.side-dot-item {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.side-dot-item .label {
  position: absolute;
  left: 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.52rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-4px);
  transition: color 0.42s ease, text-shadow 0.42s ease,
              opacity 0.42s ease, transform 0.42s ease;
  pointer-events: none;
}

.side-dot-item.active .label {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.48);
  opacity: 1;
  transform: translateX(0);
}

.side-dot-item:hover .label {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 768px) {
  #left-brand {
    left: 12px;
    top: 10px;
  }

  #left-brand img {
    width: clamp(40px, 14vw, 58px);
  }

  #quick-contact {
    right: 12px;
    top: 10px;
  }

  #contact-trigger {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    padding: 11px 16px 11px 18px;
  }

  #contact-panel {
    top: 8px;
    right: 8px;
    bottom: auto;
    width: calc(72vw - 15px);
    border-radius: 20px;
    padding: 16px 22px 16px;
    height: auto;
    max-height: calc(100dvh - 16px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #contact-close {
    top: 12px;
    right: 14px;
    gap: 10px;
  }

  .close-circle {
    width: 40px;
    height: 40px;
  }

  .cpanel-nav {
    flex: 0 0 auto;
    justify-content: flex-start;
    padding-top: 74px;
  }

  .cpanel-link {
    font-size: clamp(2rem, 8vw, 3.6rem);
    line-height: 1.04;
    padding: 0.04em 0 0.1em;
  }

  .cpanel-footer {
    margin-top: 16px;
    padding-top: 8px;
    gap: 10px;
  }

  #side-nav {
    left: 12px;
    top: 54%;
    height: 56vh;
    width: 120px;
  }
}

@media (max-width: 480px) {
  #contact-trigger {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    padding: 10px 14px 10px 16px;
  }

  #contact-panel {
    top: 6px;
    right: 6px;
    bottom: auto;
    width: calc(100vw - 12px);
    border-radius: 18px;
    padding: 14px 18px 14px;
    height: auto;
    max-height: calc(100dvh - 12px);
    overflow-y: auto;
  }

  #contact-close {
    top: 12px;
    right: 14px;
    gap: 10px;
  }

  .close-circle {
    width: 40px;
    height: 40px;
  }

  .cpanel-nav {
    flex: 0 0 auto;
    justify-content: flex-start;
    padding-top: 70px;
  }

  .cpanel-link {
    line-height: 1.03;
    padding: 0.04em 0 0.1em;
  }

  .cpanel-link {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .cpanel-footer {
    margin-top: 14px;
    padding-top: 6px;
    gap: 8px;
  }

  #side-nav {
    width: 102px;
  }

  .side-dot-item .label {
    font-size: 0.44rem;
    letter-spacing: 0.24em;
  }
}


/* ═══════════════════════════════════════════════
   Venue Selection section – full-bleed overlay
═══════════════════════════════════════════════ */
#s-gallery {
  position: relative;
  background: #1a0a0a;
  overflow: hidden;
  height: 100svh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#s-gallery::after { display: none; }

/* Full-bleed photo */
.vs-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vs-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.07);
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

/* Dark gradient overlay — left heavier, right lighter */
.vs-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(15,4,4,0.82) 0%,
      rgba(15,4,4,0.55) 46%,
      rgba(15,4,4,0.18) 100%);
}

/* Centered text card sitting on the left third */
.vs-card {
  position: relative;
  z-index: 2;
  margin-left: clamp(40px, 8vw, 130px);
  max-width: clamp(300px, 38vw, 560px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 0.2s, transform 1s cubic-bezier(0.16,1,0.3,1) 0.2s;
}

.vs-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.55rem, 0.9vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(220,190,140,0.88);
  margin-bottom: clamp(12px, 2vh, 20px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s;
}

.vs-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.6vw, 6rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 0.94;
  color: #f5ede0;
  margin-bottom: clamp(22px, 3.2vh, 38px);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.95s ease 0.28s, transform 0.95s cubic-bezier(0.16,1,0.3,1) 0.28s;
}

.vs-rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, #c9a84c, rgba(201,168,76,0.15));
  margin-bottom: clamp(18px, 2.8vh, 30px);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.7s ease 0.4s, transform 0.75s cubic-bezier(0.16,1,0.3,1) 0.4s;
}

.vs-body {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.88rem, 1.25vw, 1.06rem);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(245,237,224,0.82);
  max-width: 460px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.85s ease 0.5s, transform 0.85s cubic-bezier(0.16,1,0.3,1) 0.5s;
}

/* Three showcase venue cards — right side */
.vs-showcase {
  position: absolute;
  bottom: clamp(24px, 4.4vh, 52px);
  right: clamp(28px, 4vw, 64px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: clamp(10px, 1.1vw, 16px);
  align-items: flex-end;
  width: min(50vw, 620px);
}

.vs-venue-card {
  background: rgba(12, 5, 5, 0.54);
  border: 1px solid rgba(244, 232, 206, 0.28);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.52), 0 4px 14px rgba(0,0,0,0.32);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16,1,0.3,1);
}

.vs-venue-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.vs-venue-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.64rem, 0.9vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.92);
  line-height: 1.3;
  padding: 10px 9px 11px;
}

.vs-venue-card:nth-child(1) {
  transform: translateY(28px) rotate(-1.8deg);
  transition-delay: 0.62s;
}

.vs-venue-card:nth-child(2) {
  transform: translateY(28px) rotate(1.4deg);
  transition-delay: 0.76s;
}

.vs-venue-card:nth-child(3) {
  transform: translateY(28px) rotate(-1.1deg);
  transition-delay: 0.9s;
}

/* ── In-view animation triggers ── */
#s-gallery.in-view .vs-bg-img    { transform: scale(1); }
#s-gallery.in-view .vs-card      { opacity: 1; transform: translateY(0); }
#s-gallery.in-view .vs-eyebrow   { opacity: 1; transform: translateY(0); }
#s-gallery.in-view .vs-heading   { opacity: 1; transform: translateY(0); }
#s-gallery.in-view .vs-rule      { opacity: 1; transform: scaleX(1); }
#s-gallery.in-view .vs-body      { opacity: 1; transform: translateY(0); }

#s-gallery.in-view .vs-venue-card:nth-child(1) {
  opacity: 1;
  transform: rotate(-1.8deg) translateY(0);
}
#s-gallery.in-view .vs-venue-card:nth-child(2) {
  opacity: 1;
  transform: rotate(1.4deg) translateY(0);
}
#s-gallery.in-view .vs-venue-card:nth-child(3) {
  opacity: 1;
  transform: rotate(-1.1deg) translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .vs-card {
    margin-left: clamp(24px, 6vw, 48px);
    max-width: 90%;
  }
  .vs-showcase {
    position: static;
    width: min(92vw, 680px);
    margin: clamp(18px, 3vh, 26px) auto 0;
    padding: 0 14px;
    grid-template-columns: repeat(3, minmax(90px, 1fr));
  }

  #s-gallery {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(88px, 12vh, 120px) 0 clamp(26px, 4vh, 40px);
    height: auto;
    min-height: 100svh;
  }

  .vs-overlay {
    background: linear-gradient(160deg,
      rgba(15,4,4,0.80) 0%,
      rgba(15,4,4,0.56) 100%);
  }
}

@media (max-width: 480px) {
  .vs-card {
    margin-left: 20px;
    margin-right: 20px;
    max-width: 100%;
  }

  .vs-showcase {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 320px;
    padding: 0 12px;
    gap: 12px;
  }

  .vs-venue-card,
  .vs-venue-card:nth-child(1),
  .vs-venue-card:nth-child(2),
  .vs-venue-card:nth-child(3) {
    transform: translateY(20px);
  }

  #s-gallery.in-view .vs-venue-card,
  #s-gallery.in-view .vs-venue-card:nth-child(1),
  #s-gallery.in-view .vs-venue-card:nth-child(2),
  #s-gallery.in-view .vs-venue-card:nth-child(3) {
    transform: translateY(0);
  }

  .vs-venue-card h3 {
    font-size: 0.72rem;
    padding: 10px 10px 12px;
  }

  .vs-heading { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .vs-body    { font-size: clamp(0.82rem, 3.8vw, 1rem); }
}

/* ═══════════════════════════════════════════════
   Our Services section – premium photo card grid
═══════════════════════════════════════════════ */
#s-services {
  background: #0d0608;
  overflow: hidden;
  min-height: 100svh;
  height: auto;
  display: block;
  padding: 0;
}
#s-services::after { display: none; }

.sv-wrap {
  width: 100%;
  padding: clamp(60px, 9vh, 110px) 0 clamp(52px, 7vh, 84px);
}

/* ── Section header ── */
.sv-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 72px);
}

.sv-header {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease 0.1s, transform 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s;
}

.sv-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.52rem, 0.85vw, 0.68rem);
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(220,190,140,0.72);
  margin-bottom: clamp(10px, 1.5vh, 16px);
}

.sv-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #f5ede0;
  margin-bottom: clamp(14px, 2vh, 22px);
}

.sv-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, #c9a84c, rgba(201,168,76,0.12));
  margin: 0 auto clamp(14px, 2vh, 20px);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.7s ease 0.28s, transform 0.75s cubic-bezier(0.16,1,0.3,1) 0.28s;
}

.sv-sub {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.86rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(245,237,224,0.62);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Carousel container ── */
.sv-carousel-outer {
  position: relative;
  width: 100%;
}

.sv-track {
  display: flex;
  gap: clamp(10px, 1.4vw, 18px);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 16px clamp(24px, 5vw, 80px) 36px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.sv-track::-webkit-scrollbar { display: none; }
.sv-track.sv-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

/* ── Slide card ── */
.sv-slide {
  flex: 0 0 clamp(230px, 28vw, 360px);
  height: clamp(380px, 52vh, 580px);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  background: #180e0e;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s ease;
  will-change: transform;
}

.sv-slide:hover {
  transform: translateY(-7px);
  box-shadow:
    0 32px 72px rgba(0,0,0,0.75),
    0 0 0 1px rgba(201,168,76,0.24);
}

/* Card image */
.sv-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.05);
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.sv-slide:hover .sv-img { transform: scale(1.12); }

/* Gradient overlay — rich vignette */
.sv-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(5,1,1,0.97) 0%,
      rgba(5,1,1,0.52) 42%,
      rgba(5,1,1,0.10) 68%,
      transparent 100%),
    linear-gradient(to bottom,
      rgba(5,1,1,0.52) 0%,
      transparent 28%);
  z-index: 1;
  transition: background 0.5s ease;
}
.sv-slide:hover .sv-overlay {
  background:
    linear-gradient(to top,
      rgba(5,1,1,0.99) 0%,
      rgba(5,1,1,0.68) 48%,
      rgba(5,1,1,0.18) 72%,
      transparent 100%),
    linear-gradient(to bottom,
      rgba(5,1,1,0.62) 0%,
      transparent 30%);
}

/* Subtle gold shimmer on hover */
.sv-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    transparent 30%,
    rgba(201,168,76,0.045) 50%,
    transparent 70%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.sv-slide:hover::before { opacity: 1; }

/* Gold bottom border sweep */
.sv-slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, #c9a84c, rgba(201,168,76,0.25));
  z-index: 4;
  transition: width 0.55s cubic-bezier(0.22,1,0.36,1);
}
.sv-slide:hover::after { width: 100%; }

/* Card content layer */
.sv-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px, 2.5vh, 24px) clamp(18px, 2vw, 26px);
}

/* Service number — top-left */
.sv-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.54rem, 0.78vw, 0.66rem);
  font-weight: 400;
  letter-spacing: 0.24em;
  color: rgba(201,168,76,0.62);
  align-self: flex-start;
  transition: color 0.3s ease;
}
.sv-slide:hover .sv-num { color: #c9a84c; }

/* Bottom content block */
.sv-content-foot {
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 0.85vh, 8px);
  transform: translateY(8px);
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
}
.sv-slide:hover .sv-content-foot { transform: translateY(0); }

/* Category tag */
.sv-tag {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.44rem, 0.62vw, 0.54rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.58);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.36s ease 0.06s,
              transform 0.36s ease 0.06s,
              color 0.3s ease;
}
.sv-slide:hover .sv-tag {
  opacity: 1;
  transform: translateY(0);
  color: #c9a84c;
}

/* Service title */
.sv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.18rem, 1.85vw, 1.72rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: 0.01em;
  color: #f5ede0;
  margin: 0;
  transition: color 0.3s ease;
}
.sv-slide:hover .sv-title { color: #fff; }

/* Gold accent micro-rule */
.sv-card-rule {
  width: 28px;
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.85), rgba(201,168,76,0.08));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1) 0.08s;
}
.sv-slide:hover .sv-card-rule { transform: scaleX(1); }

/* ── Arrow navigation ── */
.sv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: clamp(44px, 4.8vw, 56px);
  height: clamp(44px, 4.8vw, 56px);
  border-radius: 50%;
  background: rgba(13,6,8,0.78);
  border: 1px solid rgba(201,168,76,0.38);
  color: rgba(245,237,224,0.88);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.28s ease, border-color 0.28s ease,
              color 0.28s ease, transform 0.28s ease, opacity 0.28s ease;
}
.sv-arrow--prev { left: clamp(6px, 1.5vw, 18px); }
.sv-arrow--next { right: clamp(6px, 1.5vw, 18px); }
.sv-arrow:hover {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.72);
  color: #f5ede0;
  transform: translateY(-50%) scale(1.08);
}
.sv-arrow.sv-disabled {
  opacity: 0.25;
  pointer-events: none;
  transform: translateY(-50%) scale(0.92);
}

/* ── Progress / counter ── */
.sv-progress-wrap {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 18px);
  max-width: 1440px;
  margin: clamp(20px, 3vh, 32px) auto 0;
  padding: 0 clamp(24px, 5vw, 80px);
}
.sv-count-cur,
.sv-count-tot {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.54rem, 0.86vw, 0.68rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(201,168,76,0.72);
  min-width: 24px;
  flex-shrink: 0;
}
.sv-count-tot { color: rgba(245,237,224,0.26); }
.sv-progress-track {
  flex: 1;
  height: 1px;
  background: rgba(245,237,224,0.1);
  position: relative;
  overflow: hidden;
}
.sv-progress-fill {
  height: 100%;
  background: linear-gradient(to right, #c9a84c, rgba(201,168,76,0.4));
  width: 0%;
  transition: width 0.22s ease;
}

/* ── In-view animations ── */
.sv-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.sv-animate.sv-visible { opacity: 1; transform: translateY(0); }
#s-services.in-view .sv-header { opacity: 1; transform: translateY(0); }
#s-services.in-view .sv-rule   { opacity: 1; transform: scaleX(1); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .sv-slide {
    flex: 0 0 clamp(200px, 42vw, 310px);
    height: clamp(340px, 52vh, 520px);
  }
  .sv-arrow { display: none; }
}

@media (max-width: 600px) {
  #s-services {
    min-height: 0;
  }

  .sv-wrap {
    padding: clamp(44px, 7vh, 72px) 0 clamp(20px, 4vh, 32px);
  }

  .sv-header-inner {
    margin-bottom: clamp(22px, 4vh, 34px);
  }

  .sv-track {
    padding: 12px clamp(16px, 4vw, 24px) 18px;
  }

  .sv-slide {
    flex: 0 0 clamp(190px, 72vw, 270px);
    height: clamp(310px, 56vw, 430px);
  }
  .sv-title { font-size: clamp(1rem, 4.2vw, 1.35rem); }
  .sv-progress-wrap {
    gap: 10px;
    margin: clamp(10px, 2vh, 16px) auto 0;
    padding: 0 clamp(16px, 4vw, 24px);
  }
}

@media (max-width: 380px) {
  .sv-slide {
    flex: 0 0 80vw;
    height: clamp(290px, 66vw, 390px);
  }
}

/* ═══════════════════════════════════════════════
   Site footer
═══════════════════════════════════════════════ */
#site-footer {
  background: #0d0608;
  border-top: 1px solid rgba(201,168,76,0.18);
  padding: clamp(48px, 7vh, 90px) clamp(20px, 6vw, 60px) clamp(32px, 5vh, 56px);
  text-align: center;
}

.sv-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.52rem, 0.85vw, 0.68rem);
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(220,190,140,0.72);
  margin-bottom: clamp(10px, 1.5vh, 16px);
}

.sv-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #f5ede0;
  margin-bottom: clamp(14px, 2vh, 22px);
}

.sv-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, #c9a84c, rgba(201,168,76,0.12));
  margin: 0 auto clamp(14px, 2vh, 20px);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.7s ease 0.28s, transform 0.75s cubic-bezier(0.16,1,0.3,1) 0.28s;
}

.sv-sub {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.86rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(245,237,224,0.62);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Photo card grid ── */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(220px, 24vw, 320px);
  gap: clamp(8px, 1.2vw, 16px);
}

/* Featured cards: 2-column wide */
.sv-item--featured {
  grid-column: span 2;
}

/* Individual card */
.sv-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #1a1010;
}

/* Image */
.sv-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.06);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.sv-item:hover .sv-img {
  transform: scale(1.14);
}

/* Dark gradient overlay */
.sv-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(8,2,2,0.88) 0%,
      rgba(8,2,2,0.38) 46%,
      rgba(8,2,2,0.05) 100%
    );
  transition: background 0.5s ease;
  z-index: 1;
}

.sv-item:hover .sv-overlay {
  background:
    linear-gradient(
      to top,
      rgba(8,2,2,0.94) 0%,
      rgba(8,2,2,0.52) 52%,
      rgba(8,2,2,0.14) 100%
    );
}

/* Gold accent line — bottom border, reveals on hover */
.sv-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, #c9a84c, rgba(201,168,76,0.3));
  z-index: 3;
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}

.sv-item:hover::after {
  width: 100%;
}

/* Text body pinned to bottom */
.sv-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(14px, 2.2vh, 22px) clamp(16px, 2vw, 24px) clamp(16px, 2.4vh, 24px);
  z-index: 2;
  transform: translateY(6px);
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
}

.sv-item:hover .sv-body {
  transform: translateY(0);
}

/* Category tag */
.sv-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: clamp(0.44rem, 0.68vw, 0.56rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: clamp(5px, 0.9vh, 8px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.38s ease 0.08s, transform 0.38s ease 0.08s;
}

.sv-item:hover .sv-tag {
  opacity: 1;
  transform: translateY(0);
}

/* Service title */
.sv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: #f5ede0;
  margin: 0;
  transition: color 0.3s ease;
}

.sv-item--featured .sv-title {
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
}

.sv-item:hover .sv-title {
  color: #fff;
}

/* ── In-view animations ── */
/* Header: triggered by section in-view (threshold 0.1 now catches this) */
.sv-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.16,1,0.3,1);
}

#s-services.in-view .sv-header { opacity: 1; transform: translateY(0); }
#s-services.in-view .sv-rule   { opacity: 1; transform: scaleX(1); }

/* Cards: per-element trigger via sv-visible (set by dedicated card observer) */
.sv-animate.sv-visible { opacity: 1; transform: translateY(0); }

/* Fallback: if section in-view fires, reveal all cards too */
#s-services.in-view .sv-animate:nth-child(1)  { opacity: 1; transform: translateY(0); transition-delay: 0.10s; }
#s-services.in-view .sv-animate:nth-child(2)  { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
#s-services.in-view .sv-animate:nth-child(3)  { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
#s-services.in-view .sv-animate:nth-child(4)  { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
#s-services.in-view .sv-animate:nth-child(5)  { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
#s-services.in-view .sv-animate:nth-child(6)  { opacity: 1; transform: translateY(0); transition-delay: 0.38s; }
#s-services.in-view .sv-animate:nth-child(7)  { opacity: 1; transform: translateY(0); transition-delay: 0.43s; }
#s-services.in-view .sv-animate:nth-child(8)  { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
#s-services.in-view .sv-animate:nth-child(9)  { opacity: 1; transform: translateY(0); transition-delay: 0.53s; }
#s-services.in-view .sv-animate:nth-child(10) { opacity: 1; transform: translateY(0); transition-delay: 0.57s; }
#s-services.in-view .sv-animate:nth-child(11) { opacity: 1; transform: translateY(0); transition-delay: 0.61s; }
#s-services.in-view .sv-animate:nth-child(12) { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }
#s-services.in-view .sv-animate:nth-child(13) { opacity: 1; transform: translateY(0); transition-delay: 0.69s; }
#s-services.in-view .sv-animate:nth-child(14) { opacity: 1; transform: translateY(0); transition-delay: 0.73s; }
#s-services.in-view .sv-animate:nth-child(15) { opacity: 1; transform: translateY(0); transition-delay: 0.77s; }
#s-services.in-view .sv-animate:nth-child(16) { opacity: 1; transform: translateY(0); transition-delay: 0.81s; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .sv-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: clamp(200px, 28vw, 300px);
  }
  .sv-item--featured {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .sv-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(180px, 38vw, 260px);
  }
  .sv-item--featured {
    grid-column: span 2;
  }
  .sv-item--featured .sv-title {
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  }
}

@media (max-width: 480px) {
  .sv-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(140px, 44vw, 200px);
    gap: 6px;
  }
  .sv-item--featured {
    grid-column: span 2;
  }
  .sv-title { font-size: clamp(0.88rem, 3.8vw, 1.15rem); }
  .sv-item--featured .sv-title { font-size: clamp(1.1rem, 5.2vw, 1.55rem); }
  .sv-body {
    padding: 10px 12px 12px;
  }
}

/* ═══════════════════════════════════════════════
   WhatsApp floating button
═══════════════════════════════════════════════ */
#wa-float {
  position: fixed;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 600;
  width: 58px;
  height: 50px;
  border-radius: 16px 0 0 16px;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10px;
  font-size: 1.56rem;
  text-decoration: none;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease 0.4s, transform 0.22s ease;
}

body.site-ready #wa-float {
  opacity: 1;
  pointer-events: auto;
}

#wa-float:hover {
  transform: translate(-8px, -50%);
  box-shadow: none;
}

@media (max-width: 680px) {
  #wa-float {
    right: -14px;
    width: 52px;
    height: 46px;
    border-radius: 14px 0 0 14px;
    padding-left: 9px;
    font-size: 1.42rem;
  }
}

/* ═══════════════════════════════════════════════
   Site footer
═══════════════════════════════════════════════ */
#site-footer {
  background: #0d0608;
  border-top: 1px solid rgba(201,168,76,0.18);
  padding: clamp(48px, 7vh, 90px) clamp(20px, 6vw, 60px) clamp(32px, 5vh, 56px);
}

.ft-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vh, 32px);
}

/* Logo */
.ft-logo {
  width: clamp(90px, 14vw, 150px);
  height: auto;
  display: block;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.ft-logo:hover {
  opacity: 1;
}

/* Instagram link */
.ft-instagram {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(245,237,224,0.7);
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.82rem, 1.1vw, 0.96rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid rgba(201,168,76,0.26);
  padding: 10px 22px;
  border-radius: 999px;
  transition: color 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.ft-instagram i {
  font-size: 1.05em;
  color: #c9a84c;
  transition: transform 0.3s ease;
}

.ft-instagram:hover {
  color: #f5ede0;
  border-color: rgba(201,168,76,0.62);
  background: rgba(201,168,76,0.06);
}

.ft-instagram:hover i {
  transform: scale(1.18);
}

/* Gold divider */
.ft-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right,
    rgba(201,168,76,0.08),
    rgba(201,168,76,0.55),
    rgba(201,168,76,0.08));
}

/* Credits */
.ft-credits {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: center;
}

.ft-copyright {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.65rem, 1vw, 0.76rem);
  font-weight: 500;
  color: rgba(245,237,224,0.32);
  letter-spacing: 0.06em;
  margin: 0;
}

.ft-designed {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.65rem, 1vw, 0.76rem);
  font-weight: 500;
  color: rgba(245,237,224,0.28);
  letter-spacing: 0.04em;
  margin: 0;
}

.ft-ketech {
  color: rgba(201,168,76,0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.ft-ketech:hover {
  color: #c9a84c;
  text-decoration: underline;
  text-underline-offset: 3px;
}
