/* =====================================================
   SOCIALITE ESCAPES – WIDGET STYLES
   Design tokens come from header.css (:root)
   ===================================================== */

/* ── Scroll-stack: section slides up over the preceding HSMI widget ── */
/*
  Uputstvo:
  1. na Elementor KONTEJNER koji sadrži SE Sticky Multi-Image dodaj klasu: se-stacks-under
  2. na Elementor KONTEJNER koji sadrži SE – The Stay dodaj klasu: se-slides-over
*/

/* HSMI kontejner — neka ima nizak z-index, ništa posebno */
.se-stacks-under {
  position: relative;
  z-index: 0;
}

/* Stay kontejner — klizi odozdo preklapajući HSMI.
   margin-top: -100vh pomera element UNUTAR GSAP tail prostora:
   Stay ulazi u viewport tačno kad HSMI tail počne (matematički savršeno),
   izlazi iz GSAP tail-a tačno kad Stay popuni ceo viewport.
   !important pobjeđuje Elementor-ov specifičnost bez JS hack-ova. */
.se-slides-over {
  position: relative;
  z-index: 1001;
  margin-top: -100vh !important;
  box-shadow: 0 -60px 100px rgba(12,10,8,0.92);
}

/* ── Container utility ─────────────────────────────── */
.se-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  box-sizing: border-box;
}

/* ── Shared tag label ──────────────────────────────── */
.se-tag {
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: 1.4rem;
}
.se-tag::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--gold); opacity: .7;
}

/* ── Scroll reveal ─────────────────────────────────── */
.rev {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.rev.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Shared buttons ────────────────────────────────── */
.se-btn-outline {
  display: inline-block;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-2);
  padding: .82rem 2.5rem;
  position: relative; overflow: hidden;
  transition: color .4s;
}
.se-btn-outline::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.se-btn-outline:hover { color: var(--bg); }
.se-btn-outline:hover::before { transform: translateX(0); }
.se-btn-outline span { position: relative; z-index: 1; }

.se-btn-text {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  text-decoration: none;
  padding-bottom: 2px;
  position: relative;
  transition: color .35s;
}
.se-btn-text::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--text-3);
  transition: width .4s ease;
}
.se-btn-text:hover { color: var(--text-2); }
.se-btn-text:hover::after { width: 100%; }

/* ── Break Elementor widget container ──────────────── */
.elementor-widget-se_hero .elementor-widget-container,
.elementor-widget-se_beaches .elementor-widget-container,
.elementor-widget-se_cta .elementor-widget-container,
.elementor-widget-se_dining .elementor-widget-container,
.elementor-widget-se_anchor_nav .elementor-widget-container,
.elementor-widget-se_sticky_multivideo .elementor-widget-container,
.elementor-widget-se_sticky_multiimage .elementor-widget-container,
.elementor-widget-se_stay .elementor-widget-container,
.elementor-widget-se_inquiry .elementor-widget-container,
.elementor-widget-se_services_grid .elementor-widget-container,
.elementor-widget-se_photo_carousel .elementor-widget-container,
.elementor-widget-se_timeline .elementor-widget-container,
.elementor-widget-se_contact_hero .elementor-widget-container,
.elementor-widget-se_cform .elementor-widget-container,
.elementor-widget-se_contact_map .elementor-widget-container,
.elementor-widget-se_cfaq .elementor-widget-container,
.elementor-widget-se_faq .elementor-widget-container {
  padding: 0 !important;
  margin:  0 !important;
}

/* Allow sticky positioning to work through Elementor's column/container wrappers */
.elementor-widget-se_sticky_multiimage,
.elementor-widget-se_sticky_multiimage .elementor-widget-container,
.elementor-widget-se_sticky_multiimage .elementor-widget-container > .se-hsmi {
  overflow: visible !important;
}

/* ── Zero out Elementor section/column/wrap for full-bleed widgets ── */
/* JS adds .se-full-section to the top-level Elementor section */
.se-full-section {
  padding-top:    0 !important;
  padding-bottom: 0 !important;
  margin-top:     0 !important;
  margin-bottom:  0 !important;
  min-height:     0 !important;
}
.se-full-section > .elementor-container,
.se-full-section > .e-con {
  max-width: 100% !important;
  width:     100% !important;
  padding:   0    !important;
}
.se-full-section .elementor-column,
.se-full-section .elementor-col-100 {
  width:     100% !important;
  max-width: 100% !important;
  padding:   0    !important;
}
.se-full-section .elementor-widget-wrap {
  padding: 0 !important;
}

/* ── Make .rev elements always visible inside Elementor editor ── */
/* IntersectionObserver doesn't fire reliably in the edit canvas  */
.elementor-editor-active .rev,
.elementor-editor-preview .rev {
  opacity:   1 !important;
  transform: none !important;
}

/* =====================================================
   HERO WIDGET
   ===================================================== */
.se-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.se-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.05);
  animation: seKbZoom 18s ease-out forwards;
}
@keyframes seKbZoom { to { transform: scale(1); } }

/* Self-hosted video background */
.se-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Vimeo background container */
.se-hero__vbg {
  position: absolute; inset: 0;
  overflow: hidden;
  background: var(--bg);
}
.se-hero__vbg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none; border: none;
}

.se-hero__ov { position: absolute; inset: 0; }

.se-hero__ov--none   { background: none; }
.se-hero__ov--light  {
  background: linear-gradient(to bottom,
    rgba(12,10,8,.28) 0%, rgba(12,10,8,.10) 30%,
    rgba(12,10,8,.22) 60%, rgba(12,10,8,.80) 100%);
}
.se-hero__ov--medium {
  background: linear-gradient(to bottom,
    rgba(12,10,8,.50) 0%, rgba(12,10,8,.20) 30%,
    rgba(12,10,8,.45) 60%, rgba(12,10,8,.94) 100%);
}
.se-hero__ov--strong {
  background: linear-gradient(to bottom,
    rgba(12,10,8,.72) 0%, rgba(12,10,8,.50) 30%,
    rgba(12,10,8,.60) 60%, rgba(12,10,8,.96) 100%);
}

.se-hero__body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 0 var(--gap);
}

.se-hero__eyebrow {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: seUp .8s .5s ease forwards;
}

.se-hero__h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 7.5rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: .04em;
  color: var(--text-1);
  opacity: 0;
  animation: seUp .9s .7s ease forwards;
}
.se-hero__h1 em {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: .62em;
  letter-spacing: .06em;
  color: var(--text-2);
}

.se-hero__rule {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold-2), transparent);
  margin: 2.2rem 0;
  opacity: 0;
  animation: seUp .6s 1s ease forwards;
}

.se-hero__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 380px;
  text-align: center;
  opacity: 0;
  animation: seUp .7s 1.1s ease forwards;
}

.se-hero__actions {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: seUp .7s 1.3s ease forwards;
}

.se-hero__scroll {
  position: absolute; bottom: 2.2rem;
  left: 0; right: 0;
  margin-inline: auto;
  width: fit-content;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: 0;
  animation: seUp .7s 1.9s ease forwards;
}
.se-hero__scroll-label {
  font-family: var(--sans);
  font-size: .52rem; font-weight: 300;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--text-4);
}
.se-hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-2), transparent);
  animation: seDropLine 2.2s 2.4s infinite;
}

@keyframes seUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes seDropLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* =====================================================
   ANCHOR NAV WIDGET
   ===================================================== */
.se-anav {
  position: relative;          /* visible in page flow by default */
  z-index: 800;
  height: 50px;
  background: rgba(12,10,8,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule-2);
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
}
.se-anav::-webkit-scrollbar { display: none; }

/* JS adds this class once the user scrolls past the nav's natural position */
.se-anav--pinned {
  position: fixed !important;
  top:   var(--hdr-h) !important;
  left:  0 !important;
  right: 0 !important;
  width: 100% !important;
}
.admin-bar .se-anav--pinned { top: calc(var(--hdr-h) + 32px) !important; }
@media screen and (max-width: 782px) {
  .admin-bar .se-anav--pinned { top: calc(var(--hdr-h) + 46px) !important; }
}

.se-anav__inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.se-anav a {
  display: flex; align-items: center;
  height: 100%; padding: 0 1.4rem;
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-3);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color .3s;
}
.se-anav a::after {
  content: '';
  position: absolute; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .35s ease;
}
.se-anav a:hover,
.se-anav a.active { color: var(--text-1); }
.se-anav a:hover::after,
.se-anav a.active::after { width: 55%; }

/* =====================================================
   BEACHES WIDGET
   ===================================================== */
.se-beaches {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-2);
  overflow: clip;
}

.se-beaches__vbg {
  position: absolute; inset: 0;
  z-index: 0;
}
.se-beaches__vbg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100vh; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none; border: none;
}

.se-beaches__ov {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(112deg, rgba(12,10,8,.92) 0%, rgba(12,10,8,.68) 42%, rgba(12,10,8,.2) 72%, rgba(12,10,8,.52) 100%),
    linear-gradient(to bottom, rgba(12,10,8,.38) 0%, transparent 20%, transparent 80%, rgba(12,10,8,.55) 100%);
}

/* Row wrapper – full width, z-index above overlay */
.se-beaches__row {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* 1400px container inside the row */
.se-beaches__body {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8rem var(--gap);
  box-sizing: border-box;
}

/* Constrain the actual text to ~half the container width */
.se-beaches__text {
  max-width: 600px;
}

.se-beaches__body h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 300; line-height: 1.06; letter-spacing: .04em;
  color: var(--text-1);
  margin-bottom: .8rem;
}

.se-beaches__lead {
  font-family: var(--serif);
  font-style: italic; font-size: 1.15rem; font-weight: 300;
  color: var(--gold);
  letter-spacing: .02em; margin-bottom: 1.8rem; line-height: 1.6;
}

.se-beaches__body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-2);
  max-width: 550px; margin-bottom: .9em;
}
.se-beaches__body strong { color: var(--text-1); font-weight: 400; }

/* =====================================================
   DINING WIDGET
   ===================================================== */
.se-dining {
  background: var(--bg);
  padding: 9rem 0;
}

.se-dining__intro {
  max-width: 640px;
  margin-bottom: 5.5rem;
}
.se-dining__intro h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300; letter-spacing: .04em;
  color: var(--text-1); margin-bottom: .8rem; line-height: 1.1;
}
.se-dining__lead {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; font-weight: 300;
  color: var(--gold); letter-spacing: .02em; margin-bottom: 1rem; line-height: 1.6;
}
.se-dining__intro p {
  font-size: 1rem; font-weight: 300;
  line-height: 1.85; color: var(--text-2);
}

/* ── Tier ─────────────────────────────────────────── */
.se-tier { margin-bottom: 4rem; }

.se-tier__hdr {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  position: relative;
}
.se-tier__hdr-left {
  display: flex; flex-direction: column; gap: .25rem;
}
.se-tier__name {
  font-family: var(--sans); font-size: .6rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--text-1);
}
.se-tier__note {
  font-family: var(--sans); font-size: .55rem; font-weight: 300;
  letter-spacing: .08em; color: var(--text-3);
}
.se-tier__arrows { display: flex; gap: .5rem; }
.se-tier__arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--rule-2) !important;
  background: transparent !important;
  color: var(--text-3) !important;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem;
  transition: border-color .3s, color .3s, background .3s;
  /* override Elementor's button focus/active brand colour */
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0 !important;
}
.se-tier__arrow:hover,
.se-tier__arrow:focus,
.se-tier__arrow:focus-visible {
  border-color: var(--gold-2) !important;
  color: var(--gold) !important;
  background: var(--gold-3) !important;
  outline: none !important;
  box-shadow: none !important;
}
.se-tier__arrow:active {
  border-color: var(--gold) !important;
  color: var(--bg) !important;
  background: var(--gold) !important;
}
.se-tier__arrow:disabled {
  opacity: .25 !important;
  cursor: default;
  pointer-events: none;
}

/* ── Track ────────────────────────────────────────── */
.se-tier__track-wrap {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}
.se-tier__track-wrap::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 5rem;
  background: linear-gradient(to left, var(--bg), transparent);
  pointer-events: none; z-index: 10;
}

.se-tier__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem var(--gap) 0;
  margin-top: 24px !important;
  cursor: grab;
}
.se-tier__track::-webkit-scrollbar { display: none; }
.se-tier__track:active { cursor: grabbing; }

/* ── Restaurant card ──────────────────────────────── */
.se-rcard {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  flex: 0 0 400px; width: 400px;
  display: flex; flex-direction: column;
  border: 1px solid var(--rule);
  scroll-snap-align: start;
  transition: border-color .4s;
  user-select: none;
}
.se-rcard::before {
  content: '';
  position: absolute; top: 0; left: 0; z-index: 3;
  width: 1px; height: 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transition: height .5s ease;
}
.se-rcard:hover { border-color: rgba(200,169,110,.22); }
.se-rcard:hover::before { height: 100%; }

.se-rcard__img {
  width: 100%; height: 180px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  transition: transform .9s cubic-bezier(.4,0,.2,1);
  transform: scale(1);
}
.se-rcard:hover .se-rcard__img { transform: scale(1.07); }
.se-rcard__img--placeholder {
  background: var(--bg-3);
}

.se-rcard__body {
  position: relative; z-index: 1;
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex; flex-direction: column; flex: 1;
}

.se-rcard__badge {
  position: absolute; top: 1.2rem; right: 1.4rem; z-index: 4;
  font-family: var(--sans); font-size: .44rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-2);
  padding: .18rem .6rem;
  white-space: nowrap;
}

.se-rcard__name {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  letter-spacing: .03em; color: var(--text-1);
  margin-bottom: .55rem;
  padding-right: 2rem;
}
.se-rcard__desc {
  font-size: .9rem; font-weight: 300;
  line-height: 1.8; color: var(--text-2);
  flex: 1; margin-bottom: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.se-rcard__meta {
  border-top: 1px solid var(--rule); padding-top: .85rem;
  display: flex; flex-direction: column; gap: .26rem;
}
.se-rcard__schedule {
  display: flex; flex-direction: column; gap: .2rem;
  margin-bottom: .45rem;
}
.se-rcard__row {
  display: flex; gap: .55rem; align-items: baseline;
}
.se-rcard__k {
  font-family: var(--sans); font-size: .5rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); opacity: .85;
  white-space: nowrap; min-width: 65px; flex-shrink: 0;
}
.se-rcard__v {
  font-family: var(--sans); font-size: .62rem; font-weight: 300;
  color: var(--text-2);
}

.se-rcard__res {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: .4rem;
  font-family: var(--sans); font-size: .5rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-2);
}
.se-rcard__dot {
  position: relative; flex-shrink: 0;
  width: 7px; height: 7px; border-radius: 50%;
}
.se-rcard__dot::after {
  content: '';
  position: absolute; inset: -3px; border-radius: 50%;
  animation: seDotPulse 2s ease-in-out infinite;
}
.se-rcard__dot--no-req {
  background: #4caf72;
  box-shadow: 0 0 0 0 rgba(76,175,114,.4);
}
.se-rcard__dot--no-req::after { background: rgba(76,175,114,.25); }
.se-rcard__dot--req {
  background: #d4604a;
  box-shadow: 0 0 0 0 rgba(212,96,74,.4);
}
.se-rcard__dot--req::after { background: rgba(212,96,74,.2); }
@keyframes seDotPulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.7); opacity: 0; }
}

/* ── Progress bar ─────────────────────────────────── */
.se-tier__progress {
  max-width: var(--container) !important;
  margin: 1.2rem auto 0;
  position: relative;
  height: 1px;
  background: var(--rule-2);
}
.se-tier__progress-fill {
  position: absolute; top: 0; left: 0;
  height: 1px; background: var(--gold);
  width: 0; min-width: 80px;
  transition: width .35s ease;
  z-index: 1;
}

/* Show scrollbar in Elementor editor so cards can be browsed while editing */
.elementor-editor-active .se-tier__track {
  overflow-x: scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-2) var(--rule);
}
.elementor-editor-active .se-tier__track::-webkit-scrollbar { height: 4px; display: block; }
.elementor-editor-active .se-tier__track::-webkit-scrollbar-track { background: var(--rule); }
.elementor-editor-active .se-tier__track::-webkit-scrollbar-thumb { background: var(--gold-2); }

/* PHP editor class: unwrap carousel so every card is visible at once */
.se-dining--editor .rev { opacity: 1 !important; transform: none !important; }
.se-dining--editor .se-tier__track-wrap { overflow: visible !important; }
.se-dining--editor .se-tier__track {
  flex-wrap: wrap !important;
  overflow: visible !important;
  height: auto !important;
  cursor: default !important;
}
.se-dining--editor .se-tier__track::-webkit-scrollbar { display: none; }
.se-dining--editor .se-tier__arrows,
.se-dining--editor .se-tier__progress { display: none; }

/* =====================================================
   CTA WIDGET
   ===================================================== */
.se-cta {
  background: var(--bg-2);
  padding: 10rem 0;
  position: relative; overflow: clip;
}
.se-cta::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 52% 55% at 50% 0%, rgba(200,169,110,.07) 0%, transparent 68%);
}

.se-cta__ornament {
  display: flex; align-items: center; gap: 1.2rem;
  justify-content: center;
  margin-bottom: 2.8rem;
  opacity: 0; transform: scaleX(0);
  transition: opacity .7s ease, transform .7s ease;
}
.se-cta__ornament span {
  width: 44px; height: 1px;
  background: var(--gold); opacity: .4;
}
.se-cta__ornament i {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); display: block;
}
.se-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 300; letter-spacing: .05em;
  color: var(--text-1); margin-bottom: 1.3rem; line-height: 1.08;
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s .2s ease, transform .7s .2s ease;
}
.se-cta__body {
  font-size: 1rem; font-weight: 300;
  line-height: 1.85; color: var(--text-2);
  max-width: 400px; margin: 0 auto;
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s .35s ease, transform .6s .35s ease;
}
.se-cta__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1.6rem; margin-top: 2.8rem;
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s .5s ease, transform .55s .5s ease;
}

/* CTA entrance – class added by JS IntersectionObserver */
.se-cta.in .se-cta__ornament {
  opacity: 1; transform: scaleX(1);
}
.se-cta.in h2 {
  opacity: 1; transform: translateY(0);
}
.se-cta.in .se-cta__body {
  opacity: 1; transform: translateY(0);
}
.se-cta.in .se-cta__actions {
  opacity: 1; transform: translateY(0);
}

/* =====================================================
   DESTINATIONS WIDGET  (Sticky Crossfade Scroll)
   ===================================================== */
.se-dest {
  /* height set by JS */
  position: relative;
}

.se-dest__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

/* Background images — stacked, crossfaded by GSAP */
.se-dest__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity;
}

/* Cinematic overlay */
.se-dest__ov {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(12,10,8,.9) 0%, rgba(12,10,8,.28) 44%, transparent 72%),
    linear-gradient(to right, rgba(12,10,8,.28) 0%, transparent 52%);
}

/* Panels container */
.se-dest__panels {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}

/* Individual stage panel */
.se-dest__panel {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  will-change: opacity, transform;
}

/* Content row */
.se-dest__panel-in {
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom:80px;
  /*padding: 0 var(--gap) clamp(7rem, 16vh, 12rem);*/
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
}

/* Left column (heading block) */
.se-dest__panel-left {
  max-width: 750px;
  flex: 1 1 auto;
}

/* Stage label */
.se-dest__stage {
  font-family: var(--sans);
  font-size: .46rem; font-weight: 300;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .6rem;
}
.se-dest__stage::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold); opacity: .6;
}

/* Large heading */
.se-dest__h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: .03em;
  color: var(--text-1);
}
.se-dest__h2 em {
  display: block;
  font-style: italic;
  color: rgba(244,240,232,.5);
}

/* Right column */
.se-dest__aside {
  text-align: right;
  flex-shrink: 0;
  max-width: 350px;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.8rem;
}
.se-dest__aside p {
  font-family: var(--sans);
  font-size: .84rem; font-weight: 300;
  line-height: 1.85;
  color: var(--text-2);
}


/* Stage counter */
.se-dest__ctr {
  position: absolute;
  bottom: 2rem; right: var(--gap);
  z-index: 3;
  font-family: var(--serif);
  font-size: 3.5rem; font-weight: 300;
  color: rgba(200,169,110,.12);
  letter-spacing: -.02em;
  line-height: 1;
  user-select: none; pointer-events: none;
}

/* ── Elementor editor: all panels visible, no sticky ── */
.se-dest--editor .se-dest__sticky {
  position: relative !important;
  height: auto;
}
.se-dest--editor .se-dest__panels {
  position: relative;
  pointer-events: auto;
}
.se-dest--editor .se-dest__panel {
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  min-height: 70vh;
}
/* Show each panel's own bg via a data-src fallback — handled in PHP per-panel style */
.se-dest--editor .se-dest__bg { display: none; }
.se-dest--editor .se-dest__panel { background-size: cover; background-position: center; }
.se-dest--editor .se-dest__ov { z-index: 0; }
.se-dest--editor .se-dest__panel-in { position: relative; z-index: 2; }
.se-dest--editor .se-dest__ctr { display: none; }

/* =====================================================
   PHILOSOPHY WIDGET
   ===================================================== */
.se-phi {
  background: var(--bg);
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
}

/* Background image */
.se-phi__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center bottom;
  z-index: 0;
}

/* Self-hosted video — object-position bottom keeps waves in frame */
.se-phi__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}

/* Vimeo background — anchored to bottom so waves are always visible */
.se-phi__vbg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg);
}
.se-phi__vbg iframe {
  position: absolute;
  bottom: 0; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translateX(-50%);
  pointer-events: none; border: none;
}

/* Overlay — very dark at top, reveals only bottom portion */
.se-phi__ov {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.se-phi__ov--medium {
  background: linear-gradient(to bottom,
    rgba(12,10,8,.94) 0%,
    rgba(12,10,8,.90) 40%,
    rgba(12,10,8,.72) 68%,
    rgba(12,10,8,.38) 88%,
    rgba(12,10,8,.18) 100%);
}
.se-phi__ov--strong {
  background: linear-gradient(to bottom,
    rgba(12,10,8,.97) 0%,
    rgba(12,10,8,.95) 45%,
    rgba(12,10,8,.82) 70%,
    rgba(12,10,8,.50) 88%,
    rgba(12,10,8,.22) 100%);
}
.se-phi__ov--ultra {
  background: linear-gradient(to bottom,
    rgba(12,10,8,.99) 0%,
    rgba(12,10,8,.97) 52%,
    rgba(12,10,8,.90) 74%,
    rgba(12,10,8,.62) 90%,
    rgba(12,10,8,.32) 100%);
}

/* Content above bg layers */
.se-phi--has-bg .se-wrap { position: relative; z-index: 2; }

.se-phi__tag {
  display: flex; align-items: center; gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.se-phi__tag-rule {
  width: 22px; height: 1px;
  background: var(--gold); opacity: .6;
}
.se-phi__tag-text {
  font-family: var(--sans);
  font-size: .5rem; font-weight: 400;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold);
}

.se-phi__quote {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: .04em;
  color: var(--text-1);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.se-phi__quote em {
  font-style: italic;
  color: var(--gold);
}

.se-phi__attr {
  display: flex; align-items: center; gap: 1.2rem;
  justify-content: center;
  margin-top: 3.5rem;
}
.se-phi__attr-rule {
  width: 22px; height: 1px;
  background: var(--gold); opacity: .5;
}
.se-phi__attr-text {
  font-family: var(--sans);
  font-size: .5rem; font-weight: 300;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--text-3);
}

.se-phi__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6rem;
  padding-bottom: 20rem; /* breathing room for translateY(240px) on pillar 3 */
}

.se-phi__pillar {
  padding: 3.5rem 0;
  position: relative;
  opacity: 0;
  transition: opacity 0.65s ease;
}
.se-phi__pillar.is-visible {
  opacity: 1;
}
.se-phi__pillar:nth-child(1) {
  padding-right: 2.5rem;
  transform: translateY(0);
}
.se-phi__pillar:nth-child(2) {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  transform: translateY(120px);
}
.se-phi__pillar:nth-child(3) {
  padding-left: 2.5rem;
  transform: translateY(240px);
}

/* Gold pulse line — draws down on P2 and P3 left edges, so it moves with their translateY */
.se-phi__line {
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
  background: var(--gold);
  transform-origin: top center;
  transform: scaleY(0);
  pointer-events: none;
  transition: transform 0.75s ease;
}
.se-phi__pillar.is-visible .se-phi__line {
  transform: scaleY(1);
  transition-delay: 0.35s;
}

.se-phi__pillar-label {
  font-family: var(--sans);
  font-size: .46rem; font-weight: 300;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.se-phi__pillar-h {
  font-family: var(--serif);
  font-size: 1.45rem; font-weight: 300;
  line-height: 1.2; letter-spacing: .03em;
  color: var(--text-1);
  margin-bottom: 1.2rem;
}
.se-phi__pillar-p {
  font-family: var(--sans);
  font-size: .82rem; font-weight: 300;
  line-height: 1.9;
  color: var(--text-2);
}

/* Bottom fade — blends seamlessly into the dark background of the next section */
.se-phi::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 14rem;
  background: linear-gradient(to bottom, rgba(12,10,8,0) 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 5;
}

/* Elementor editor: flat layout, fully visible, gold line pre-drawn */
.se-phi__pillars--editor .se-phi__pillar { opacity: 1 !important; transform: none !important; transition: none !important; }
.se-phi__pillars--editor .se-phi__line { transform: scaleY(1) !important; transition: none !important; }

/* GSAP scrub mode — disable CSS transitions so scroll-scrub is smooth */
.se-phi__pillars--gsap .se-phi__pillar { transition: none !important; }
.se-phi__pillars--gsap .se-phi__line   { transition: none !important; }

/* =====================================================
   INQUIRY CTA WIDGET
   ===================================================== */
.se-inquiry {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background: var(--bg);
}

.se-inquiry__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.se-inquiry__ov {
  position: absolute;
  inset: 0;
}
.se-inquiry__ov--light {
  background: linear-gradient(to bottom,
    rgba(12,10,8,1) 0%,
    rgba(12,10,8,.50) 26%,
    rgba(12,10,8,.40) 100%);
}
.se-inquiry__ov--medium {
  background: linear-gradient(to bottom,
    rgba(12,10,8,1) 0%,
    rgba(12,10,8,.72) 26%,
    rgba(12,10,8,.62) 100%);
}
.se-inquiry__ov--strong {
  background: linear-gradient(to bottom,
    rgba(12,10,8,1) 0%,
    rgba(12,10,8,.88) 24%,
    rgba(12,10,8,.82) 100%);
}

.se-inquiry__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 55% at 50% 50%, rgba(200,169,110,.06) 0%, transparent 65%);
}

.se-inquiry__inner {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

.se-inquiry__ornament {
  display: flex; align-items: center; gap: 1.2rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.se-inquiry__ornament span {
  width: 48px; height: 1px;
  background: var(--gold); opacity: .4;
}
.se-inquiry__ornament i {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); display: block;
}

.se-inquiry__h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: .05em;
  color: var(--text-1);
  margin-bottom: 1.4rem;
}
.se-inquiry__h2 em {
  font-style: italic;
  color: var(--gold);
}

.se-inquiry__body {
  font-family: var(--sans);
  font-size: 1rem; font-weight: 300;
  line-height: 1.85; color: var(--text-2);
  max-width: 400px;
  margin-bottom: 3.5rem;
}

.se-inquiry__actions {
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap; justify-content: center;
}

.se-inquiry__contact {
  font-family: var(--sans);
  font-size: .5rem; font-weight: 300;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--text-4);
  margin-top: 3.5rem;
}

/* Entrance animations */
.se-inquiry__ornament,
.se-inquiry__h2,
.se-inquiry__body,
.se-inquiry__actions,
.se-inquiry__contact {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.se-inquiry.in .se-inquiry__ornament { opacity: 1; transform: none; transition-delay: 0s; }
.se-inquiry.in .se-inquiry__h2       { opacity: 1; transform: none; transition-delay: .15s; }
.se-inquiry.in .se-inquiry__body     { opacity: 1; transform: none; transition-delay: .3s; }
.se-inquiry.in .se-inquiry__actions  { opacity: 1; transform: none; transition-delay: .45s; }
.se-inquiry.in .se-inquiry__contact  { opacity: 1; transform: none; transition-delay: .6s; }

/* =====================================================
   RESPONSIVE – MOBILE  (≤ 768px)
   ===================================================== */
@media (max-width: 768px) {

  /* Hero */
  .se-hero__h1 { font-size: clamp(2.6rem, 9vw, 4.5rem); }
  .se-hero__sub { font-size: .95rem; max-width: 320px; }
  .se-hero__actions { flex-direction: column; gap: 1rem; }
  .se-hero__rule { height: 32px; }
  .se-hero__ov--light  {
    background: linear-gradient(to bottom,
      rgba(12,10,8,.50) 0%, rgba(12,10,8,.20) 30%,
      rgba(12,10,8,.45) 60%, rgba(12,10,8,.90) 100%);
  }
  .se-hero__ov--medium {
    background: linear-gradient(to bottom,
      rgba(12,10,8,.72) 0%, rgba(12,10,8,.50) 30%,
      rgba(12,10,8,.60) 60%, rgba(12,10,8,.95) 100%);
  }
  .se-hero__ov--strong {
    background: linear-gradient(to bottom,
      rgba(12,10,8,.85) 0%, rgba(12,10,8,.65) 30%,
      rgba(12,10,8,.75) 60%, rgba(12,10,8,.98) 100%);
  }

  /* Anchor nav – pill style on mobile */
  .se-anav__inner { justify-content: flex-start; gap: .4rem; }
  .se-anav a {
    font-size: .55rem; padding: 0 1rem;
    border-radius: 0;
    border: 1px solid transparent;
    transition: color .3s, background .3s, border-color .3s;
  }
  .se-anav a.active {
    background: var(--gold-3);
    border-color: var(--gold-2);
    color: var(--gold);
  }
  .se-anav a::after { display: none; }

  /* Beaches */
  .se-beaches { min-height: 90vh; }
  .se-beaches__body {
    padding: 5rem 20px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .se-beaches__body h2 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .se-beaches__body p { max-width: 100%; font-size: .95rem; }

  /* Dining */
  .se-dining { padding: 5rem 0; }
  .se-dining .se-wrap { padding: 0 20px; }
  .se-dining__intro { margin-bottom: 3rem; }
  .se-dining__intro h2 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .se-dining__intro p { font-size: .95rem; }
  .se-rcard { flex: 0 0 85vw; width: 85vw; }
  .se-tier__hdr { flex-direction: row; padding-left: 20px !important; padding-right: 20px !important; }
  .se-tier__progress { margin-left: 20px; margin-right: 20px; }

  /* Destinations */
  .se-dest__panel-in {
    flex-direction: column; align-items: flex-start; gap: 1.5rem;
    padding-left: 20px; padding-right: 20px; padding-bottom: 60px;
  }
  .se-dest__aside { text-align: left; align-items: flex-start; max-width: 100%; }
  .se-dest__h2 { font-size: clamp(2.4rem, 8vw, 3.8rem); }
  .se-dest__ctr { right: 1.2rem; font-size: 2.5rem; }

  /* Philosophy */
  .se-phi { padding: 5rem 0; }
  .se-phi .se-wrap { padding: 0 20px; }
  .se-phi__quote { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
  .se-phi__pillars {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
    padding-bottom: 0;
  }
  .se-phi__pillar:nth-child(1),
  .se-phi__pillar:nth-child(2),
  .se-phi__pillar:nth-child(3) {
    padding: 2.2rem 0;
    margin-top: 0;
    border-right: none;
    border-bottom: 1px solid var(--rule);
    transform: none;
  }
  .se-phi__pillar:last-child { border-bottom: none; }
  .se-phi__line { display: none; } /* connector is desktop-only */

  /* The Stay */
  .se-stay__body { padding: 3.5rem 20px 5rem !important; }
  .se-stay__attr { padding: .65rem 0; }
  .se-stay__attr-t { font-size: .86rem; }

  /* Inquiry */
  .se-inquiry { padding: 6rem 0; }
  .se-inquiry__h2 { font-size: clamp(2.2rem, 7vw, 3.2rem); }
  .se-inquiry__actions { flex-direction: column; gap: 1.2rem; }
  .se-inquiry__contact { font-size: .48rem; }

  /* CTA */
  .se-cta { padding: 6rem 0 8rem; }
  .se-cta .se-wrap { padding: 0 20px; }
  .se-cta h2 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  .se-cta__body { font-size: .95rem; }
  .se-cta__actions { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .se-rcard { flex: 0 0 92vw; width: 92vw; }
  .se-hero__h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
}

/* =====================================================
   STICKY MULTI-VIDEO WIDGET
   ===================================================== */

.ss-section { position: relative; }

.ss-sticky {
  position: sticky; top: 0;
  width: 100%; height: 100vh;
  overflow: hidden;
}

.ss-videos { position: absolute; inset: 0; z-index: 0; }

.ss-video {
  position: absolute; inset: 0;
  opacity: 0;
  will-change: opacity;
}

.ss-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100vh; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none; border: none;
}

.ss-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(12,10,8,.88) 0%,
      rgba(12,10,8,.55) 38%,
      rgba(12,10,8,.12) 62%,
      rgba(12,10,8,.45) 100%
    ),
    linear-gradient(to bottom,
      rgba(12,10,8,.3) 0%, transparent 20%,
      transparent 80%, rgba(12,10,8,.5) 100%
    );
}

.ss-panels { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.ss-panel {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; pointer-events: none;
  will-change: opacity, transform;
}

.ss-pi {
  width: min(620px, 55vw);
  margin-left: clamp(3rem, 9vw, 9rem);
  padding: 2.4rem 0 2.4rem 2rem;
  position: relative;
}

.ss-pi::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 0;
  background: linear-gradient(to bottom, transparent, var(--gold) 35%, var(--gold) 65%, transparent);
  transition: height .55s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
}
.ss-panel.is-active .ss-pi::before { height: 72%; }

/* Eyebrow label — Montserrat, same rhythm as .se-tag */
.ss-label {
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.ss-rule { width: 26px; height: 1px; background: var(--gold); margin-bottom: 1.4rem; opacity: .6; }

/* Heading — Cormorant Garamond, same weight/tracking as site h2s */
.ss-panel h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: .04em;
  color: var(--text-1);
  margin-bottom: 1.4rem;
}
.ss-panel h2 .wrd { display: inline-block; }

/* Body text — Montserrat, same as beaches/dining paragraphs */
.ss-panel p {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: .02em;
  color: var(--text-2);
  max-width: 480px;
}
.ss-panel p .ln { display: block; }

/* Counter — Cormorant Garamond for the number, Montserrat for the slash */
.ss-ctr {
  position: absolute; bottom: 1.8rem;
  left: clamp(3rem, 9vw, 9rem);
  display: flex; align-items: baseline; gap: .3rem;
  z-index: 10;
}
.ss-ctr-n {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
}
.ss-ctr-s {
  font-family: var(--sans);
  font-size: .52rem;
  font-weight: 400;
  letter-spacing: .2em;
  color: var(--gold-2);
  text-transform: uppercase;
}

.ss-editor-preview .ss-sticky { position: relative !important; }

/* PHP render in Elementor editor — show all panels & first video */
.ss-in-editor .ss-video[data-idx="0"] { opacity: 1; }
.ss-in-editor .ss-panel               { opacity: 1; }
.ss-in-editor .ss-panel .ss-label,
.ss-in-editor .ss-panel .ss-rule,
.ss-in-editor .ss-panel h2,
.ss-in-editor .ss-panel p             { opacity: 1 !important; filter: none !important; transform: none !important; }

@media (max-width: 768px) {
  .ss-pi {
    width: calc(100% - 40px);
    max-width: none;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .ss-pi::before { display: none; }
  .ss-ctr { left: 20px; }
}

@media (max-width: 480px) {
  .ss-panel h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .ss-panel p  { font-size: .95rem; line-height: 1.8; }
  .ss-label    { font-size: .5rem; letter-spacing: .24em; }
}

/* =====================================================
   STAY WIDGET
   ===================================================== */
.se-stay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}

/* Flip: media right, text left */
.se-stay--right .se-stay__media { order: 2; }
.se-stay--right .se-stay__body  { order: 1; }

/* ── Media column ──────────────────────────────── */
.se-stay__media {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  min-height: 520px;
}

.se-stay__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.se-stay__vbg {
  position: absolute; inset: 0;
  background: var(--bg);
}
.se-stay__vbg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.8%; height: 100%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none; border: none;
}

/* Gradient fade into text column */
.se-stay__media-ov {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}
.se-stay--left  .se-stay__media-ov {
  background: linear-gradient(to right, transparent 62%, var(--bg) 100%);
}
.se-stay--right .se-stay__media-ov {
  background: linear-gradient(to left, transparent 62%, var(--bg) 100%);
}

/* ── Text column ───────────────────────────────── */
.se-stay__body {
  display: flex;
  align-items: center;
  padding: clamp(5rem, 9vh, 9rem) 0;
}

/* Gap on the viewport-edge side aligns with the 1400px container */
.se-stay--left  .se-stay__body {
  padding-left:  clamp(2rem, 9vw, 10rem);
  padding-right: var(--gap);
}
.se-stay--right .se-stay__body {
  padding-right: clamp(2rem, 9vw, 3rem);
  padding-left:  var(--gap);
  justify-content: flex-end;
}

.se-stay__body-in {
  width: 100%;
  max-width: 580px;
}

/* ── Eyebrow ───────────────────────────────────── */
.se-stay__eyebrow {
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: 2rem;
}
.se-stay__eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--gold); opacity: .6;
  flex-shrink: 0;
}

/* ── Heading ───────────────────────────────────── */
.se-stay__h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: .04em;
  color: var(--text-1);
  margin-bottom: 1.8rem;
}
.se-stay__h2 em {
  display: block;
  font-style: italic;
  color: var(--text-2);
}

/* ── Body text ─────────────────────────────────── */
.se-stay__p {
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 300;
  line-height: 1.9;
  max-width: 400px;
  color: var(--text-2);
  margin-bottom: .9em;
}
/* .se-stay__p--2 intentionally has no overrides — same style as body paragraph */

/* ── Highlights list (premium numbered) ─────────── */
.se-stay__attrs {
  margin: 2.8rem 0 0;
  border-top: 1px solid var(--rule);
  max-width: 400px;
}

.se-stay__attr {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  align-items: center;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--rule);
  transition: border-color .4s;
}
.se-stay__attr:hover { border-color: rgba(200,169,110,.22); }

.se-stay__attr::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  justify-self: center;
  animation: seStayDot 2.2s ease-in-out infinite;
}
@keyframes seStayDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,110,.55); }
  60%       { box-shadow: 0 0 0 5px rgba(200,169,110,0); }
}

.se-stay__attr-t {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 300;
  letter-spacing: .03em;
  line-height: 1.6;
  color: var(--text-2);
}

/* Button always has the same gap above it, whether attrs list is visible or not */
.se-stay__body-in .se-btn-outline {
  margin-top: 3.5rem;
}

/* ── Offer badge ────────────────────────────────── */
.se-stay__badge {
  display: inline-flex; align-items: center; gap: .65rem;
  border: 1px solid var(--gold-2);
  padding: .42rem .9rem .42rem .75rem;
  margin-bottom: 1.8rem;
}
.se-stay__badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: se-stay-badge-pulse 2.4s infinite;
}
@keyframes se-stay-badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}
.se-stay__badge-t {
  font-family: var(--sans); font-size: .48rem; font-weight: 300;
  letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
}

/* ── Offer price ────────────────────────────────── */
.se-stay__price {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 300;
  color: var(--text-1); letter-spacing: .05em;
  display: flex; align-items: baseline; gap: .5rem;
  margin-top: 2.5rem;
}
.se-stay__price-suffix {
  font-family: var(--sans); font-size: .5rem; font-weight: 200;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-3);
}

/* Ken Burns — slow background drift, animates background-position so it never
   conflicts with GSAP which drives transform (parallax scale + yPercent). */
@keyframes se-stay-kb {
  0%   { background-position: 44% 50%; }
  100% { background-position: 56% 50%; }
}
.se-stay__img--kb {
  animation: se-stay-kb 16s ease-in-out alternate infinite;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 900px) {
  .se-stay {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .se-stay__media {
    height: 62vw;
    min-height: 280px;
    order: 1 !important;
  }
  .se-stay--left  .se-stay__media-ov,
  .se-stay--right .se-stay__media-ov {
    background: linear-gradient(to bottom, transparent 55%, var(--bg) 100%);
  }
  .se-stay__body {
    order: 2 !important;
    padding: 3.5rem 1.6rem 5rem !important;
    justify-content: flex-start !important;
  }
  .se-stay__body-in { max-width: 100%; }
  .se-stay__h2 { font-size: clamp(2rem, 7vw, 3.2rem); }
}

/* =====================================================
   SE – 404 ERROR PAGE
   ===================================================== */
.se-404 {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--gap);
  position: relative;
  overflow: hidden;
}

/* Radial gold atmosphere */
.se-404::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(200,169,110,.055) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 80%, rgba(200,169,110,.03) 0%, transparent 70%);
}

.se-404__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.se-404__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  margin-bottom: 2.8rem;
}
.se-404__ornament span {
  display: block;
  width: 48px; height: 1px;
  background: var(--gold); opacity: .4;
}
.se-404__ornament i {
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.se-404__num {
  font-family: var(--serif);
  font-size: clamp(7rem, 20vw, 13rem);
  font-weight: 300;
  letter-spacing: .08em;
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,169,110,.35);
  margin-bottom: 1.6rem;
  display: block;
}

.se-404__tag {
  font-family: var(--sans);
  font-size: .53rem;
  font-weight: 400;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  margin-bottom: 1.6rem;
}
.se-404__tag::before,
.se-404__tag::after {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--gold); opacity: .6;
}

.se-404__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--text-1);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.se-404__text {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-3);
  margin-bottom: 2.8rem;
}

.se-404__rule {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rule-2), transparent);
  margin: 0 auto 2.8rem;
}

/* =====================================================
   SE – ELEMENTOR UTILITY CLASSES
   Ubaci naziv klase u "CSS Classes" polje u
   Elementor → Advanced tabi za native widgete.
   ===================================================== */

/* ── h2_se — Heading widget, veliki serif naslov (kao h2 na sajtu) ── */
.h2_se .elementor-heading-title {
  font-family: var(--serif) !important;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: .04em;
  color: var(--text-1);
}

/* ── sub_se — Heading widget, podnaslov (serif, srednja veličina) ── */
.sub_se .elementor-heading-title {
  font-family: var(--serif) !important;
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: .03em;
  color: var(--text-1);
}

/* ── p_se — Text Editor widget, body paragraf ── */
.p_se .elementor-widget-container p {
  font-family: var(--sans) !important;
  font-size: .86rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-2);
  margin-bottom: .9em;
}

/* ── btn-outline_se — Button widget → gold outline sa fill animacijom ── */
.btn-outline_se .elementor-button {
  font-family: var(--sans) !important;
  font-size: .65rem !important;
  font-weight: 500 !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 1px solid var(--gold-2) !important;
  border-radius: 0 !important;
  padding: .82rem 2.5rem !important;
  position: relative !important;
  overflow: hidden !important;
  transition: color .4s !important;
}
.btn-outline_se .elementor-button::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.btn-outline_se .elementor-button:hover {
  color: var(--bg) !important;
  background: transparent !important;
}
.btn-outline_se .elementor-button:hover::before { transform: translateX(0); }
.btn-outline_se .elementor-button .elementor-button-content-wrapper,
.btn-outline_se .elementor-button .elementor-button-text {
  position: relative;
  z-index: 1;
}

.se-404__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .se-404 { padding: 6rem 20px; }
  .se-404__actions { flex-direction: column; }
  .se-404__actions .se-btn-outline { width: 100%; text-align: center; }
}

/* =====================================================
   SE STICKY MULTI-IMAGE WIDGET
   ===================================================== */
.se-smi { position: relative; }

.se-smi__sticky {
  position: sticky; top: 0;
  width: 100%; height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

/* Background images — stacked, crossfaded by GSAP */
.se-smi__imgs { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.se-smi__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity;
}

/* Cinematic overlay — same as Destinations */
.se-smi__ov {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(12,10,8,.9) 0%, rgba(12,10,8,.28) 44%, transparent 72%),
    linear-gradient(to right, rgba(12,10,8,.28) 0%, transparent 52%);
}

/* Panels container */
.se-smi__panels { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

/* Individual panel */
.se-smi__panel {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  opacity: 0;
  will-change: opacity, transform;
}

/* Content row */
.se-smi__panel-in {
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 80px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
}

/* Left column */
.se-smi__panel-left { max-width: 750px; flex: 1 1 auto; }

/* Stage label */
.se-smi__stage {
  font-family: var(--sans);
  font-size: .46rem; font-weight: 300;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .6rem;
}
.se-smi__stage::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold); opacity: .6;
  flex-shrink: 0;
}

/* Large heading */
.se-smi__h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: .03em;
  color: var(--text-1);
}
.se-smi__h2 em {
  display: block;
  font-style: italic;
  color: rgba(244,240,232,.5);
}
.se-smi__h2 .wrd { display: inline-block; }

/* Right column */
.se-smi__aside {
  text-align: right;
  flex-shrink: 0;
  max-width: 350px;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.8rem;
}
.se-smi__aside p {
  font-family: var(--sans);
  font-size: .84rem; font-weight: 300;
  line-height: 1.85;
  color: var(--text-2);
}
.se-smi__aside p .ln { display: block; }

/* ── Elementor editor: all panels visible, no sticky ── */
.se-smi--editor .se-smi__sticky { position: relative !important; height: auto; }
.se-smi--editor .se-smi__imgs { display: none; }
.se-smi--editor .se-smi__panels { position: relative; pointer-events: auto; }
.se-smi--editor .se-smi__panel {
  position: relative;
  opacity: 1 !important;
  transform: none !important;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
}
.se-smi--editor .se-smi__ov { z-index: 0; }
.se-smi--editor .se-smi__panel-in { position: relative; z-index: 2; }
.se-smi--editor .se-smi__panel .se-smi__stage,
.se-smi--editor .se-smi__panel .se-smi__h2,
.se-smi--editor .se-smi__panel .se-smi__aside { opacity: 1 !important; filter: none !important; transform: none !important; }
.se-smi--editor .ss-ctr { display: none; }

@media (max-width: 768px) {
  .se-smi__panel-in {
    flex-direction: column; align-items: flex-start; gap: 1.5rem;
    padding-left: 20px; padding-right: 20px; padding-bottom: 60px;
  }
  .se-smi__aside { text-align: left; align-items: flex-start; max-width: 100%; }
  .se-smi__h2 { font-size: clamp(2.4rem, 8vw, 3.8rem); }
}

@media (max-width: 480px) {
  .se-smi__h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .se-smi__aside p { font-size: .95rem; line-height: 1.8; }
  .se-smi__stage { font-size: .5rem; }
}

/* =====================================================
   STICKY MULTI-IMAGE — HORIZONTAL GSAP SCROLL  (.se-hsmi)
   ===================================================== */
.se-hsmi {
  position: relative;
  background: var(--bg);
  overflow: clip;
}
.se-hsmi__pin {
  position: sticky;
  top: var(--hdr-h);
  height: calc(100vh - var(--hdr-h));
  width: 100%;
  overflow: hidden;
}

.se-hsmi__bgs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.se-hsmi__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform, filter;
  transform: scale(1.08);
}
.se-hsmi__bg.is-init { opacity: 1; }

.se-hsmi__ov {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top,    rgba(12,10,8,.88) 0%, rgba(12,10,8,.32) 44%, rgba(12,10,8,.08) 72%),
    linear-gradient(to right,  rgba(12,10,8,.46) 0%, rgba(12,10,8,.04) 50%, rgba(12,10,8,.18) 100%);
}

.se-hsmi__track {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-wrap: nowrap;
  will-change: transform;
}
.se-hsmi__panel {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  background: transparent;
}
.se-hsmi__body {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; pointer-events: none;
}
.se-hsmi__body-in {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap) clamp(5rem, 12vh, 9rem);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 4rem;
}
.se-hsmi__left {
  flex: 1 1 auto; max-width: 780px;
  will-change: transform, opacity;
}
.se-hsmi__stage {
  font-family: var(--sans);
  font-size: .5rem; font-weight: 400;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .7rem;
  margin: 0 0 1.4rem;
}
.se-hsmi__stage::before {
  content: ''; display: block;
  width: 22px; height: 1px;
  background: var(--gold); opacity: .7;
}
.se-hsmi__h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.4vw, 6.4rem);
  font-weight: 300; line-height: .94; letter-spacing: .03em;
  color: var(--text-1); margin: 0; text-wrap: balance;
}
.se-hsmi__h2 em {
  display: block; font-style: italic;
  color: rgba(244,240,232,.55);
}
.se-hsmi__aside {
  flex: 0 0 auto; max-width: 340px; text-align: right;
  pointer-events: auto;
  display: flex; flex-direction: column; align-items: flex-end; gap: 1.6rem;
  will-change: transform, opacity;
}
.se-hsmi__aside p {
  font-family: var(--sans);
  font-size: .88rem; font-weight: 300; line-height: 1.85;
  color: var(--text-2); margin: 0;
}

.se-hsmi__counter {
  position: absolute;
  top: clamp(1.2rem, 4vh, 2.4rem); right: clamp(1.4rem, 3.5vw, 3.5rem);
  z-index: 4;
  display: flex; align-items: baseline; gap: .55rem;
  font-family: var(--serif); color: var(--gold);
  user-select: none; pointer-events: none;
}
.se-hsmi__counter-n {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 300; letter-spacing: -.02em; line-height: 1;
}
.se-hsmi__counter-s {
  font-family: var(--sans);
  font-size: .55rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-2);
  transform: translateY(-.3em);
}
.se-hsmi__progress {
  position: absolute;
  left: clamp(1.4rem, 3.5vw, 3.5rem); right: clamp(1.4rem, 3.5vw, 3.5rem);
  bottom: clamp(1.4rem, 3vh, 2.4rem);
  z-index: 4;
  height: 2px; background: rgba(244,240,232,.2);
  pointer-events: none;
}
.se-hsmi__progress-fill {
  position: absolute; top: 0; left: 0;
  height: 2px; background: var(--gold);
  width: 0%;
}
.se-hsmi__progress-dots {
  position: absolute; inset: 0;
  display: flex; justify-content: space-between; align-items: center;
}
.se-hsmi__dot {
  width: 5px; height: 5px;
  background: var(--rule-2); border-radius: 50%;
  transition: background .35s ease, transform .35s ease;
}
.se-hsmi__dot.is-active { background: var(--gold); transform: scale(1.6); }

.se-hsmi__hint {
  position: absolute;
  left: clamp(1.4rem, 3.5vw, 3.5rem); top: clamp(1.4rem, 4vh, 2.4rem);
  z-index: 4;
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--sans);
  font-size: .5rem; font-weight: 400;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--text-4); pointer-events: none;
}
.se-hsmi__hint-arrow {
  width: 28px; height: 1px; background: var(--gold-2);
  position: relative; overflow: hidden;
}
.se-hsmi__hint-arrow::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-100%);
  animation: hsmiArrow 2.4s cubic-bezier(.6,.1,.3,1) infinite;
}
@keyframes hsmiArrow {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Variant — minimal */
.se-hsmi.is-minimal .se-hsmi__counter,
.se-hsmi.is-minimal .se-hsmi__progress,
.se-hsmi.is-minimal .se-hsmi__hint { opacity: .35; }

/* Variant — editorial */
.se-hsmi.is-editorial .se-hsmi__body-in { flex-direction: column; align-items: flex-start; gap: 2rem; }
.se-hsmi.is-editorial .se-hsmi__aside { text-align: left; align-items: flex-start; max-width: 480px; }

/* Variant — centered */
.se-hsmi.is-centered .se-hsmi__body { align-items: center; }
.se-hsmi.is-centered .se-hsmi__body-in {
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1.8rem;
  padding: clamp(3rem, 8vh, 6rem) var(--gap);
}
.se-hsmi.is-centered .se-hsmi__left { max-width: 920px; text-align: center; }
.se-hsmi.is-centered .se-hsmi__stage { justify-content: center; }
.se-hsmi.is-centered .se-hsmi__stage::after {
  content: ''; display: block;
  width: 22px; height: 1px; background: var(--gold); opacity: .7;
}
.se-hsmi.is-centered .se-hsmi__h2 { text-wrap: balance; }
.se-hsmi.is-centered .se-hsmi__aside { text-align: center; align-items: center; max-width: 480px; }
.se-hsmi.is-centered .se-hsmi__aside p {
  font-family: var(--sans);
  font-size: 1rem; line-height: 1.85; color: var(--text-2);
}
.se-hsmi.is-centered .se-hsmi__ov {
  background: linear-gradient(to bottom,
    rgba(12,10,8,.55) 0%, rgba(12,10,8,.18) 30%,
    rgba(12,10,8,.18) 70%, rgba(12,10,8,.55) 100%);
}

/* Mobile (≤820px) */
@media (max-width: 820px) {
  .se-hsmi { height: auto !important; }

  /* Pin keeps explicit height — absolute children (counter, progress) need a positioned container */
  .se-hsmi__pin {
    position: relative; top: auto;
    height: 88vh; min-height: 560px;
    overflow: hidden;
  }

  /* Track stays absolute (same as desktop) — native scroll replaces GSAP */
  .se-hsmi__track {
    position: absolute; inset: 0;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transform: none !important;
    width: auto !important;
    gap: 0.5rem;
  }
  .se-hsmi__track::-webkit-scrollbar { display: none; }

  /* Panels — tiny right peek (~12px) just hints there is a next slide */
  .se-hsmi__panel {
    flex: 0 0 calc(100% - 1.2rem);
    width: calc(100% - 1.2rem); height: 100%;
    min-height: 0;
    scroll-snap-align: start;
    background-image: var(--panel-bg, none);
    background-size: cover;
    background-position: center;
    background-color: var(--bg);
  }

  /* Per-panel gradient overlay — shared .se-hsmi__ov can't reach inside the scrollable track */
  .se-hsmi__panel::after {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
      linear-gradient(to top,   rgba(12,10,8,.88) 0%, rgba(12,10,8,.28) 44%, transparent 72%),
      linear-gradient(to right, rgba(12,10,8,.38) 0%, rgba(12,10,8,.04) 50%, rgba(12,10,8,.18) 100%);
  }
  .se-hsmi__body { z-index: 2; }

  /* Hide shared layers — replaced by per-panel approach above */
  .se-hsmi__bgs { display: none; }
  .se-hsmi__ov  { display: none; }

  .se-hsmi__body-in {
    flex-direction: column; align-items: flex-start; gap: 1.4rem;
    padding: 0 40px 5rem !important;
  }
  .se-hsmi__aside { text-align: left; align-items: flex-start; max-width: 100%; }
  .se-hsmi__h2 { font-size: clamp(2.2rem, 9vw, 3.4rem); }

  /* Counter + progress — positioned inside pin (z-index 4 > track z-index 2) */
  .se-hsmi__counter {
    top: 1.2rem; right: 1.4rem;
    background: rgba(12,10,8,.32);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(244,240,232,.08);
    border-radius: 4px;
    padding: .45rem .9rem .45rem .75rem;
  }
  .se-hsmi__counter-n { font-size: 1.8rem; }
  .se-hsmi__progress { left: 1.4rem; right: 1.4rem; bottom: 1.2rem; height: 2px; }
  .se-hsmi__progress-fill { height: 2px; }
  .se-hsmi__hint { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .se-hsmi__hint-arrow::after { animation: none; }
}

/* Elementor editor — unwrap pinning, show all panels */
.se-hsmi--editor { height: auto !important; }
.se-hsmi--editor .se-hsmi__pin {
  position: relative !important; top: auto !important;
  height: auto !important; overflow: visible !important;
}
.se-hsmi--editor .se-hsmi__track {
  position: relative !important; inset: auto !important;
  flex-direction: column !important; flex-wrap: nowrap !important;
  width: 100% !important; transform: none !important;
}
.se-hsmi--editor .se-hsmi__panel {
  flex: 0 0 auto; width: 100% !important; height: 80vh; min-height: 520px;
}
.se-hsmi--editor .se-hsmi__hint,
.se-hsmi--editor .se-hsmi__progress { display: none; }

/* ══════════════════════════════════════════════════════
   CUSTOM SCROLLBAR — premium dark
   Webkit (Chrome, Edge, Safari) + Firefox
   ══════════════════════════════════════════════════════ */

/* Firefox */
html {
  scrollbar-color: rgba(200,169,110,.32) #0c0a08;
  scrollbar-width: thin;
}

/* WebKit */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #0c0a08;
}
::-webkit-scrollbar-thumb {
  background: rgba(200,169,110,.32);
  border-radius: 3px;
  transition: background .25s;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(200,169,110,.62);
}
::-webkit-scrollbar-corner {
  background: #0c0a08;
}

/* ══════════════════════════════════════════════════════
   BACK TO TOP — subtilan, premium
   ══════════════════════════════════════════════════════ */

.se-btt {
  position: fixed;
  bottom: clamp(1.2rem, 3vw, 2.2rem);
  right:  clamp(1.2rem, 3vw, 2.2rem);
  z-index: 8900;

  width:  44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(244,240,232,.13);
  background: rgba(12,10,8,.82) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;

  /* reset browser/Elementor button defaults */
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity      .4s cubic-bezier(.4,0,.2,1),
    transform    .4s cubic-bezier(.4,0,.2,1),
    border-color .3s ease,
    box-shadow   .3s ease;
}

.se-btt.se-btt--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.se-btt:hover,
.se-btt:focus,
.se-btt:active,
.se-btt:focus-visible {
  background: rgba(12,10,8,.82) !important;
  color: inherit !important;
  outline: none !important;
  text-decoration: none !important;
}

.se-btt:hover {
  border-color: rgba(200,169,110,.55);
  box-shadow: 0 0 18px rgba(200,169,110,.18) !important;
}

.se-btt:active {
  box-shadow: none !important;
}

.se-btt svg {
  display: block;
  width: 16px;
  height: 16px;
  stroke: var(--gold, #c8a96e);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.se-btt:hover svg {
  transform: translateY(-2px);
}

/* =====================================================
   SE – COMPARE STAYS WIDGET
   ===================================================== */

.se-compare {
  padding: 10rem 0;
  background: var(--ink2, #111009);
}

/* Eyebrow */
.se-compare__eyebrow {
  font-family: var(--sans);
  font-size: .5rem;
  font-weight: 300;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold, #c8a96e);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.2rem;
}
.se-compare__eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold, #c8a96e);
  opacity: .65;
  flex-shrink: 0;
}

/* Header row */
.se-compare__head {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gap, clamp(1.4rem, 3.5vw, 4rem));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5rem;
  gap: 2rem;
}

.se-compare__h2 {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--sand, #f4f0e8);
  line-height: 1.08;
}
.se-compare__h2 em {
  font-style: italic;
  color: rgba(244,240,232,.5);
}

/* Ghost button */
.se-compare__btn {
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,240,232,.68);
  text-decoration: none;
  padding-bottom: 2px;
  position: relative;
  transition: color .35s;
  white-space: nowrap;
  align-self: flex-end;
}
.se-compare__btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(244,240,232,.68);
  transition: width .4s;
}
.se-compare__btn:hover { color: var(--sand, #f4f0e8); }
.se-compare__btn:hover::after { width: 100%; }

/* Table wrapper */
.se-compare__table {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gap, clamp(1.4rem, 3.5vw, 4rem));
}

/* Grid */
.se-compare__cols {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1fr);
  border: 1px solid rgba(244,240,232,.14);
}

/* Column header cells */
.se-compare__col-hdr {
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(244,240,232,.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.se-compare__col-hdr:last-child { border-right: none; }

.se-compare__col-hdr--label {
  background: transparent;
}

.se-compare__col-name {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--sand, #f4f0e8);
  line-height: 1.1;
  margin-bottom: .4rem;
}
.se-compare__col-name--label {
  color: rgba(244,240,232,.28);
  font-size: 1rem;
}

.se-compare__col-sub {
  font-family: var(--sans);
  font-size: .44rem;
  font-weight: 200;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold, #c8a96e);
}

/* Feature rows — display:contents so cells sit in the grid */
.se-compare__row { display: contents; }

.se-compare__cell {
  padding: 1rem 2rem;
  border-top: 1px solid rgba(244,240,232,.08);
  border-right: 1px solid rgba(244,240,232,.08);
  display: flex;
  align-items: center;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 200;
  color: rgba(244,240,232,.68);
  letter-spacing: .03em;
}
.se-compare__cell:last-child { border-right: none; }

.se-compare__cell--label {
  color: rgba(244,240,232,.42);
  font-size: .66rem;
  letter-spacing: .06em;
}

.se-compare__ck   { color: var(--gold, #c8a96e); font-size: .8rem; }
.se-compare__dash { color: rgba(244,240,232,.16); }


@media (max-width: 768px) {
  .se-compare__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .se-compare__table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .se-compare__cols {
    min-width: 560px;
  }
}
@media (max-width: 1100px) {
  .se-compare__cell,
  .se-compare__col-hdr { padding: 1rem 1.2rem; }
}


/* =====================================================
   SE – SERVICES GRID
   ===================================================== */
.se-svc {
  padding: 10rem 0 12rem;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}

/* Header row: left text block + right sub paragraph */
.se-svc__hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 7rem;
}

.se-svc__h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--text-1);
  line-height: 1.08;
}
.se-svc__h2 em { font-style: italic; color: rgba(244,240,232,.5); }

.se-svc__sub {
  max-width: 360px;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 200;
  line-height: 1.9;
  color: rgba(244,240,232,.68);
}

/* Grid: cards share --bg background; 1px gap reveals --rule-2 as divider line */
.se-svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-2);
  border: 1px solid var(--rule-2);
}

.se-svc__card {
  background: var(--bg);
  padding: 3.5rem 2.8rem;
  position: relative;
  overflow: hidden;
  transition: background .45s;
}
/* Extra top-padding on select cards for visual stagger */
.se-svc__card:nth-child(1),
.se-svc__card:nth-child(2) { padding-top: 5rem; }
.se-svc__card:nth-child(5) { padding-top: 5rem; }

/* Radial glow from top on hover */
.se-svc__card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% -10%, rgba(200,169,110,.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.se-svc__card:hover { background: #0f0d0b; }
.se-svc__card:hover::before { opacity: 1; }

/* Gold top-border reveal left-to-right */
.se-svc__card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.se-svc__card:hover::after { transform: scaleX(1); }

.se-svc__n {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 200;
  line-height: 1;
  color: rgba(200,169,110,.06);
  letter-spacing: -.04em;
  user-select: none;
  display: block;
  margin-bottom: -.6rem;
  transition: color .45s;
}
.se-svc__card:hover .se-svc__n { color: rgba(200,169,110,.12); }

.se-svc__rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .4;
  margin-bottom: 1.8rem;
  transition: width .45s, opacity .45s;
}
.se-svc__card:hover .se-svc__rule { width: 44px; opacity: .75; }

.se-svc__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: .04em;
  color: var(--text-1);
  margin-bottom: 1.1rem;
  transition: color .35s;
}
.se-svc__card:hover .se-svc__title { color: var(--gold); }

.se-svc__desc {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 200;
  line-height: 1.85;
  color: rgba(244,240,232,.68);
}


@media (max-width: 1100px) {
  .se-svc__grid { grid-template-columns: repeat(2, 1fr); }
  .se-svc__hd   { flex-direction: column; gap: 1.5rem; }
}
@media (max-width: 768px) {
  .se-svc { padding: 5rem 0 6rem; }
  .se-svc .se-wrap { padding: 0 20px; }
  .se-svc__grid { grid-template-columns: 1fr; }
  .se-svc__hd   { margin-bottom: 3rem; }
  /* Reset nth-child stagger padding in single-column layout */
  .se-svc__card:nth-child(1),
  .se-svc__card:nth-child(2),
  .se-svc__card:nth-child(5) { padding-top: 3.5rem; }
}


/* =====================================================
   SE – PHOTO CAROUSEL
   ===================================================== */
.se-carousel {
  padding: 10rem 0;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}

.se-carousel__hd { margin-bottom: 4rem; }

.se-carousel__h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--text-1);
  line-height: 1.08;
}
.se-carousel__h2 em { font-style: italic; color: rgba(244,240,232,.5); }

/* Outer: clips track, fades edges into --bg */
.se-carousel__outer {
  position: relative;
  overflow: hidden;
}
.se-carousel__outer::before,
.se-carousel__outer::after {
  content: '';
  position: absolute; top: 0; bottom: 0; z-index: 2;
  pointer-events: none;
  width: clamp(80px, 12vw, 180px);
}
.se-carousel__outer::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.se-carousel__outer::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

/* Track: JS computes --se-scroll-shift + duration from real item positions, then starts animation */
.se-carousel__track {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 clamp(80px, 12vw, 180px);
  will-change: transform;
  animation: se-photo-carousel-scroll 40s linear infinite;
  animation-play-state: paused;
  user-select: none;
}

@keyframes se-photo-carousel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--se-scroll-shift, 0px)); }
}

.se-carousel__item {
  flex-shrink: 0;
  width: clamp(260px, 28vw, 420px);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.se-carousel__item--land {
  aspect-ratio: 16/10;
  width: clamp(380px, 40vw, 580px);
}

.se-carousel__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(.4,0,.2,1);
}
.se-carousel__item:hover .se-carousel__img { transform: scale(1.04); }

.se-carousel__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .9rem 1.2rem;
  background: linear-gradient(to top, rgba(11,9,8,.7) 0%, transparent 100%);
  font-family: var(--sans);
  font-size: .44rem;
  font-weight: 200;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(244,240,232,.5);
  opacity: 0;
  transition: opacity .35s;
}
.se-carousel__item:hover .se-carousel__label { opacity: 1; }

/* Dot progress indicator */
.se-carousel__nav {
  display: flex;
  justify-content: center;
  gap: .8rem;
  margin-top: 2.8rem;
}
.se-carousel__dot {
  width: 20px;
  height: 1px;
  background: rgba(200,169,110,.25);
  cursor: pointer;
  transition: background .3s, width .3s;
  border: none;
  padding: 0;
}
.se-carousel__dot--active {
  background: var(--gold);
  width: 36px;
}
/* Elementor magenta override for dot buttons */
.se-carousel .se-carousel__dot,
.se-carousel .se-carousel__dot:hover,
.se-carousel .se-carousel__dot:focus,
.se-carousel .se-carousel__dot:active,
.se-carousel .se-carousel__dot:focus-visible {
  background: rgba(200,169,110,.25) !important;
  outline: none !important;
  box-shadow: none !important;
}
.se-carousel .se-carousel__dot--active,
.se-carousel .se-carousel__dot--active:hover,
.se-carousel .se-carousel__dot--active:focus {
  background: var(--gold) !important;
}
@media (max-width: 768px) {
  .se-carousel { padding: 5rem 0; }
  .se-carousel .se-wrap { padding: 0 20px; }
  /* Switch outer to native scroll-snap container */
  .se-carousel__outer {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .se-carousel__outer::-webkit-scrollbar { display: none; }
  .se-carousel__outer::before,
  .se-carousel__outer::after { display: none; }
  /* Kill desktop animation, let items flow naturally */
  .se-carousel__track {
    animation: none !important;
    width: max-content;
    padding: 0 20px;
    gap: 12px;
  }
  /* Hide dupes — only needed for desktop infinite loop */
  .se-carousel__item--dupe { display: none; }
  .se-carousel__item {
    scroll-snap-align: start;
    width: 80vw;
    flex-shrink: 0;
  }
  .se-carousel__item--land { width: 85vw; }
}


/* =====================================================
   SE – VERTICAL TIMELINE
   ===================================================== */
.se-timeline {
  padding: 10rem 0 12rem;
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
}

/* Header: 2-col grid left=heading, right=description */
.se-timeline__hd {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 8rem;
  align-items: end;
  margin-bottom: 7rem;
}

.se-timeline__h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--text-1);
  line-height: 1.08;
}
.se-timeline__h2 em { font-style: italic; color: rgba(244,240,232,.5); }

.se-timeline__hdesc {
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 200;
  line-height: 1.95;
  color: rgba(244,240,232,.68);
}

/* Body: decorative aside (left) + steps (right) */
.se-timeline__body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
}

.se-timeline__aside {
  position: relative;
  padding-right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.se-timeline__aside-n {
  position: sticky;
  top: 30vh;
  font-family: var(--serif);
  font-size: clamp(8rem, 15vw, 14rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -.05em;
  color: rgba(200,169,110,.04);
  user-select: none;
}

/* Steps column: left border is the vertical timeline rule */
.se-timeline__steps {
  position: relative;
  border-left: 1px solid var(--rule-2);
}

.se-timeline__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0;
  position: relative;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .65s ease, transform .65s ease;
}
.se-timeline__step.in { opacity: 1; transform: translateX(0); }

/* Dot column: dot sits flush-left so margin-left:-5px centres it on the border */
.se-timeline__dot-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2px;
}
.se-timeline__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold-2);
  background: var(--bg-2);
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: background .35s, border-color .35s, transform .35s;
  margin-left: -5px;
}
.se-timeline__dot-col::after {
  content: '';
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, var(--rule-2), transparent);
  margin-top: 6px;
}
.se-timeline__step:last-child .se-timeline__dot-col::after { display: none; }

.se-timeline__step-body {
  padding: 0 2.5rem 5rem;
}
.se-timeline__step-num {
  font-family: var(--sans);
  font-size: .44rem;
  font-weight: 200;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(200,169,110,.45);
  margin-bottom: .7rem;
  display: block;
}
.se-timeline__step-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: .03em;
  color: var(--text-1);
  line-height: 1.1;
  margin-bottom: 1.1rem;
  transition: color .3s;
}
.se-timeline__step.is-active .se-timeline__dot {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.6);
}
.se-timeline__step.is-active .se-timeline__step-title {
  color: var(--gold);
}

.se-timeline__step-desc {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 200;
  line-height: 1.95;
  color: rgba(244,240,232,.68);
  max-width: 540px;
}

@media (max-width: 1100px) {
  .se-timeline__hd   { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
  .se-timeline__body { grid-template-columns: 1fr; }
  .se-timeline__aside { display: none; }
}
@media (max-width: 768px) {
  .se-timeline { padding: 5rem 0 6rem; }
  .se-timeline .se-wrap { padding: 0 20px; }
  .se-timeline__step { grid-template-columns: 48px 1fr; }
  .se-timeline__step-body { padding: 0 1.2rem 3rem; }
}

/* =====================================================
   CONTACT HERO WIDGET  (.se-chero)
   ===================================================== */
.se-chero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content intentionally omitted – body fills viewport, bar flows below */
  position: relative;
  overflow: hidden;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%,   rgba(200,169,110,.028) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%,  rgba(200,169,110,.018) 0%, transparent 55%);
  padding-top: calc(var(--hdr-h) + 4rem);
}

.se-chero__body {
  /* min-height pushes the bar below the initial viewport fold so it
     only reveals on first scroll (IntersectionObserver fires at ~8% visible) */
  min-height: calc(100vh - var(--hdr-h) - 4rem);
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 var(--gap) 4rem;
}

.se-chero__eyebrow {
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 300;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2.6rem;
  justify-content: center;
}
.se-chero__eyebrow::before,
.se-chero__eyebrow::after {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  opacity: .6;
}

.se-chero__h1 {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8.5vw, 7.2rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: .03em;
  color: var(--text-1);
}
.se-chero__h1 em {
  font-style: italic;
  font-weight: 200;
  color: rgba(244,240,232,.4);
  display: block;
  font-size: .68em;
  margin-top: .16em;
}

.se-chero__vline {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--gold-2), transparent);
  margin: 2.2rem auto;
}

.se-chero__sub {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 200;
  letter-spacing: .04em;
  line-height: 1.85;
  color: rgba(244,240,232,.82);
  max-width: 380px;
}

/* Scroll indicator */
.se-chero__scroll {
  position: absolute;
  bottom: 6.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  pointer-events: none;
}
.se-chero__scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--gold-2), transparent);
  animation: seCheroScroll 2.2s 1.5s infinite;
}
@keyframes seCheroScroll {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}
.se-chero__scroll-lbl {
  font-family: var(--sans);
  font-size: .38rem;
  font-weight: 200;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(244,240,232,.22);
}

/* Contact bar */
.se-chero__bar {
  width: 100%;
  max-width: var(--container);
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--rule-2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(12,10,8,.55);
  backdrop-filter: blur(12px);
}

.se-chero__bar-item {
  padding: 1.6rem clamp(1.2rem, 2.5vw, 2.4rem);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.se-chero__bar-item:last-child { border-right: none; }

.se-chero__bar-kicker {
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 300;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(200,169,110,.9);
}
.se-chero__bar-val {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-1);
  letter-spacing: .03em;
  line-height: 1.2;
}
.se-chero__bar-val a {
  color: var(--text-1);
  text-decoration: none;
  transition: color .35s;
}
.se-chero__bar-val a:hover { color: var(--gold); }
.se-chero__bar-sub {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 200;
  color: var(--text-3);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .se-chero__bar { grid-template-columns: 1fr 1fr; }
  .se-chero__bar-item:nth-child(2) { border-right: none; }
  .se-chero__bar-item:nth-child(3) { border-top: 1px solid var(--rule); }
  .se-chero__bar-item:nth-child(4) { border-top: 1px solid var(--rule); border-right: none; }
}
@media (max-width: 768px) {
  .se-chero { padding-top: calc(var(--hdr-h) + 2rem); }
  .se-chero__body {
    min-height: calc(100vh - var(--hdr-h) - 2rem);
    padding: 0 20px 3rem;
  }
  .se-chero__h1  { font-size: clamp(2.8rem, 10vw, 4rem); }
  .se-chero__sub { font-size: .9rem; max-width: 100%; }
  .se-chero__scroll { display: none; }
}
@media (max-width: 480px) {
  .se-chero__bar { grid-template-columns: 1fr; }
  .se-chero__bar-item { border-right: none; border-top: 1px solid var(--rule); padding: 1.3rem 20px; }
  .se-chero__bar-item:first-child { border-top: none; }
  .se-chero__bar-kicker { font-size: .7rem; }
  .se-chero__bar-val    { font-size: 1.15rem; }
  .se-chero__bar-sub    { font-size: .75rem; }
}


/* =====================================================
   CONTACT FORM WIDGET  (.se-cform)
   ===================================================== */
.se-cform {
  padding: 10rem 0 12rem;
  background: linear-gradient(to bottom, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--rule);
}

.se-cform__in {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 8rem;
  align-items: start;
}

/* ── Editorial intro ── */
.se-cform__h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: .04em;
  color: var(--text-1);
  margin-bottom: 2.4rem;
}
.se-cform__h2 em {
  font-style: italic;
  color: rgba(244,240,232,.4);
}
.se-cform__body {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 200;
  line-height: 2;
  color: rgba(244,240,232,.82);
  max-width: 340px;
  margin-bottom: 3.2rem;
}
.se-cform__divider {
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .4;
  margin-bottom: 2.4rem;
}
.se-cform__socials {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.se-cform__social {
  font-family: var(--sans);
  font-size: .52rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: color .3s;
  position: relative;
  width: fit-content;
  padding-bottom: 2px;
}
.se-cform__social::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s;
}
.se-cform__social:hover { color: var(--gold); }
.se-cform__social:hover::after { width: 100%; }
.se-cform__social-arrow {
  font-size: .7rem;
  color: var(--gold);
  opacity: .55;
}

/* ── Native form grid ── */
.se-cform__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.5rem;
}

.se-cform__row {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  padding-bottom: .2rem;
  margin-bottom: 2.8rem;
  position: relative;
}
.se-cform__row--full  { grid-column: 1 / -1; }
.se-cform__row--chips { border-bottom: none; margin-bottom: 2.2rem; }

/* Subtle resting underline */
.se-cform__row::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: .5px;
  background: rgba(244,240,232,.22);
}
.se-cform__row--chips::after { display: none; }

/* Gold animated underline (GSAP controlled via JS) */
.se-cform__uline {
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left .5s cubic-bezier(.4,0,.2,1), right .5s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.se-cform__row:focus-within .se-cform__uline { left: 0; right: 0; }

/* Label */
.se-cform__lbl {
  font-family: var(--sans);
  font-size: .46rem;
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(244,240,232,.5);
  margin-bottom: .6rem;
  display: block;
  transition: color .35s;
}
.se-cform__row:focus-within .se-cform__lbl { color: var(--gold); }

/* Inputs / textarea / select */
.se-cform__inp {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  outline: none;
  box-shadow: none !important;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 300;
  color: var(--text-1) !important;
  letter-spacing: .03em;
  padding: 0;
  width: 100%;
  line-height: 1.5;
  -webkit-appearance: none;
  transition: color .3s;
}
textarea.se-cform__inp {
  resize: none;
  height: 88px;
  line-height: 1.8;
}
.se-cform__inp::placeholder {
  color: rgba(244,240,232,.38);
  font-style: italic;
  font-family: var(--serif);
  font-size: .95em;
}
select.se-cform__inp { cursor: pointer; }
select.se-cform__inp option { background: var(--bg-2); color: var(--text-1); }

/* Select chevron */
.se-cform__row--sel { position: relative; }
.se-cform__sel-arrow {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-30%) rotate(45deg);
  width: 5px; height: 5px;
  border-right: .5px solid rgba(200,169,110,.38);
  border-bottom: .5px solid rgba(200,169,110,.38);
  pointer-events: none;
}

/* Chip interests */
.se-cform__chips-lbl {
  font-family: var(--sans);
  font-size: .46rem;
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(244,240,232,.5);
  display: block;
  margin-bottom: 1rem;
}
.se-cform__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.se-cform__chip {
  border: 1px solid rgba(244,240,232,.2);
  padding: .44rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: border-color .35s, background .35s;
}
.se-cform__chip input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 0; height: 0;
  position: absolute;
}
.se-cform__chip-t {
  font-family: var(--sans);
  font-size: .52rem;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,240,232,.55);
  transition: color .3s;
  user-select: none;
}
.se-cform__chip:has(input:checked) {
  border-color: var(--gold-2);
  background: var(--gold-3);
}
.se-cform__chip:has(input:checked) .se-cform__chip-t { color: var(--gold); }
.se-cform__chip:hover { border-color: rgba(200,169,110,.32); }

/* Submit button */
.se-cform__submit-row { grid-column: 1 / -1; margin-top: .5rem; }
.se-cform__submit {
  width: 100%;
  padding: 1.3rem;
  background: transparent;
  border: .5px solid var(--gold-2);
  border-radius: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  overflow: hidden;
  transition: color .4s;
}
/* Elementor override — ensures our design wins regardless of plugin styles */
.se-cform__form .se-cform__submit {
  width: 100% !important;
  padding: 1.3rem !important;
  background: transparent !important;
  border: .5px solid var(--gold-2) !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  font-family: var(--sans) !important;
  font-size: .58rem !important;
  font-weight: 400 !important;
  letter-spacing: .3em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: color .4s !important;
  box-shadow: none !important;
  text-shadow: none !important;
  line-height: 1 !important;
}
.se-cform__submit::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .48s cubic-bezier(.4,0,.2,1);
}
.se-cform__submit:hover,
.se-cform__form .se-cform__submit:hover { color: var(--bg) !important; }
.se-cform__submit:hover::before { transform: translateX(0); }
.se-cform__submit span { position: relative; z-index: 1; }
.se-cform__submit:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.se-cform__privacy {
  grid-column: 1 / -1;
  margin-top: 1.2rem;
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 200;
  letter-spacing: .12em;
  color: rgba(244,240,232,.55);
  text-align: center;
}

/* Status message */
.se-cform__status {
  grid-column: 1 / -1;
  margin-top: .8rem;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 300;
  letter-spacing: .06em;
  text-align: center;
  min-height: 1.5em;
}
.se-cform__status--ok  { color: var(--gold); }
.se-cform__status--err { color: #e08070; }

@media (max-width: 1100px) {
  .se-cform__in { grid-template-columns: 1fr; gap: 4rem; }
}
@media (max-width: 768px) {
  .se-cform { padding: 6rem 0 8rem; }
  .se-cform .se-wrap { padding: 0 20px; }
  .se-cform__h2  { font-size: clamp(2rem, 7vw, 2.8rem); }
  .se-cform__form { grid-template-columns: 1fr; }
  .se-cform__row { grid-column: 1 / -1 !important; }
  .se-cform__chips { gap: .5rem; }
}


/* =====================================================
   CONTACT MAP WIDGET  (.se-cmap)
   ===================================================== */
.se-cmap {
  position: relative;
}

.se-cmap__wrap {
  position: relative;
  overflow: hidden;
}

.se-cmap__wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
  filter:
    grayscale(100%)
    invert(1)
    hue-rotate(180deg)
    brightness(.85)
    contrast(1.05)
    saturate(.45);
}

.se-cmap__overlay {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  background: rgba(11,9,8,.25);
  mix-blend-mode: multiply;
}

.se-cmap__fade {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.se-cmap__fade--l,
.se-cmap__fade--r {
  top: 0; bottom: 0;
  width: clamp(40px, 7vw, 100px);
}
.se-cmap__fade--t,
.se-cmap__fade--b {
  left: 0; right: 0;
  height: 40px;
}
.se-cmap__fade--l { left:  0; display: none; }
.se-cmap__fade--r { right: 0; background: linear-gradient(to left,  var(--bg) 0%, transparent 100%); }
.se-cmap__fade--t { top:    0; background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%); }
.se-cmap__fade--b { bottom: 0; background: linear-gradient(to top,    var(--bg) 0%, transparent 100%); }

/* Floating card */
.se-cmap__card {
  position: absolute;
  left: clamp(2rem, 6vw, 6rem);
  bottom: -2px;
  z-index: 3;
  background: var(--bg-2);
  border: 1px solid var(--rule-2);
  border-bottom: none;
  padding: 2.2rem 3rem 2.4rem;
  min-width: 320px;
}
.se-cmap__card-kicker {
  font-family: var(--sans);
  font-size: .44rem;
  font-weight: 300;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(200,169,110,.5);
  display: block;
  margin-bottom: .7rem;
}
.se-cmap__card-name {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 300;
  color: var(--text-1);
  letter-spacing: .04em;
  display: block;
  line-height: 1.2;
  margin-bottom: .4rem;
}
.se-cmap__card-addr {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 200;
  color: var(--text-3);
  line-height: 1.7;
}
.se-cmap__card-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .48rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap .35s;
}
.se-cmap__card-link:hover { gap: .9rem; color: var(--gold) !important; }

@media (max-width: 768px) {
  .se-cmap__card {
    position: relative;
    left: auto; bottom: auto;
    min-width: 0;
    border: 1px solid var(--rule-2);
  }
}


/* =====================================================
   CONTACT FAQ WIDGET  (.se-cfaq)
   ===================================================== */
.se-cfaq {
  padding: 11rem 0 12rem;
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--rule);
}

.se-cfaq__in {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8rem;
  align-items: start;
}

/* Sticky left panel */
.se-cfaq__left { position: sticky; top: 30vh; }

.se-cfaq__h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: .04em;
  color: var(--text-1);
  margin-bottom: 1.4rem;
}
.se-cfaq__h2 em {
  font-style: italic;
  color: rgba(244,240,232,.45);
}
.se-cfaq__left-body {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 200;
  line-height: 1.95;
  color: rgba(244,240,232,.82);
  max-width: 280px;
}

/* FAQ list */
.se-cfaq__list { border-top: .5px solid var(--rule-2); }

.se-cfaq__item { border-bottom: .5px solid var(--rule); overflow: hidden; }

.se-cfaq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.2rem 0;
  gap: 2.5rem;
  text-align: left;
}
/* Elementor override — kill magenta on all interactive states */
.se-cfaq .se-cfaq__q,
.se-cfaq .se-cfaq__q:hover,
.se-cfaq .se-cfaq__q:focus,
.se-cfaq .se-cfaq__q:active,
.se-cfaq .se-cfaq__q:focus-visible {
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: inherit !important;
}
.se-cfaq__q-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.72rem);
  font-weight: 300;
  color: var(--text-1);
  letter-spacing: .03em;
  line-height: 1.2;
  transition: color .35s;
}
.se-cfaq__item.open .se-cfaq__q-text { color: var(--gold); }

.se-cfaq__arrow {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.se-cfaq__item.open .se-cfaq__arrow {
  transform: rotate(180deg);
}
.se-cfaq__arrow::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-right: .5px solid var(--gold-2);
  border-bottom: .5px solid var(--gold-2);
  transform: rotate(45deg) translateY(-2px);
  transition: border-color .35s;
}
.se-cfaq__item.open .se-cfaq__arrow::before { border-color: var(--gold); }

.se-cfaq__a {
  overflow: hidden;
  height: 0;
  transition: height .52s cubic-bezier(.4,0,.2,1);
}
.se-cfaq__a-inner {
  padding: 0 0 2.2rem;
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 200;
  line-height: 2.05;
  color: rgba(244,240,232,.82);
  max-width: 580px;
}

@media (max-width: 1100px) {
  .se-cfaq__in { grid-template-columns: 1fr; gap: 4rem; }
  .se-cfaq__left { position: static; }
}
@media (max-width: 768px) {
  .se-cfaq { padding: 6rem 0 7rem; }
  .se-cfaq .se-wrap { padding: 0 20px; }
  .se-cfaq__h2       { font-size: clamp(2rem, 7vw, 2.8rem); }
  .se-cfaq__q-text   { font-size: clamp(1.1rem, 5vw, 1.4rem); }
  .se-cfaq__q        { padding: 1.6rem 0; }
  .se-cfaq__a-inner  { font-size: .9rem; }
}


/* =====================================================
   FLATPICKR DARK THEME  (.se-fp)
   ===================================================== */
.se-fp.flatpickr-calendar {
  background: var(--bg-2, #0e0c0b);
  border: 1px solid rgba(200,169,110,.18);
  border-radius: 0;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  font-family: var(--sans, 'Cormorant Garamond', serif);
  color: var(--text-1, #f4f0e8);
}
.se-fp .flatpickr-months,
.se-fp .flatpickr-month {
  background: transparent;
  color: var(--text-1, #f4f0e8);
  fill: var(--text-1, #f4f0e8);
}
.se-fp .flatpickr-current-month {
  font-family: var(--sans, sans-serif);
  font-size: .56rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-1, #f4f0e8);
}
.se-fp .flatpickr-current-month input.cur-year,
.se-fp .numInputWrapper span {
  color: var(--text-1, #f4f0e8);
}
.se-fp .flatpickr-prev-month,
.se-fp .flatpickr-next-month {
  color: var(--gold, #c8a96e);
  fill: var(--gold, #c8a96e);
}
.se-fp .flatpickr-prev-month:hover,
.se-fp .flatpickr-next-month:hover { fill: var(--text-1, #f4f0e8); }
.se-fp .flatpickr-weekdays { background: transparent; }
.se-fp span.flatpickr-weekday {
  background: transparent;
  font-family: var(--sans, sans-serif);
  font-size: .42rem;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(200,169,110,.5);
}
.se-fp .flatpickr-day {
  font-family: var(--sans, sans-serif);
  font-size: .62rem;
  font-weight: 200;
  color: rgba(244,240,232,.75);
  border-color: transparent;
  border-radius: 0;
}
.se-fp .flatpickr-day:hover {
  background: rgba(200,169,110,.1);
  border-color: transparent;
  color: var(--text-1, #f4f0e8);
}
.se-fp .flatpickr-day.selected,
.se-fp .flatpickr-day.startRange,
.se-fp .flatpickr-day.endRange {
  background: var(--gold, #c8a96e) !important;
  border-color: var(--gold, #c8a96e) !important;
  color: var(--bg, #0b0908) !important;
  border-radius: 0 !important;
}
.se-fp .flatpickr-day.inRange {
  background: rgba(200,169,110,.12) !important;
  border-color: transparent !important;
  color: var(--text-1, #f4f0e8) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.se-fp .flatpickr-day.today {
  border-color: rgba(200,169,110,.35) !important;
}
.se-fp .flatpickr-day.today:hover {
  background: rgba(200,169,110,.1);
  color: var(--text-1, #f4f0e8);
}
.se-fp .flatpickr-day.disabled,
.se-fp .flatpickr-day.disabled:hover {
  color: rgba(244,240,232,.2);
}
.se-fp .flatpickr-day.flatpickr-disabled {
  color: rgba(244,240,232,.2);
}
.se-fp .numInputWrapper:hover { background: transparent; }
.se-fp .numInputWrapper span { opacity: .5; }
.se-fp .numInputWrapper span:hover { opacity: 1; }
.se-fp.arrowTop::before { border-bottom-color: rgba(200,169,110,.18); }
.se-fp.arrowTop::after  { border-bottom-color: var(--bg-2, #0e0c0b); }
.se-fp.arrowBottom::before { border-top-color: rgba(200,169,110,.18); }
.se-fp.arrowBottom::after  { border-top-color: var(--bg-2, #0e0c0b); }


/* =====================================================
   PRICING TABLE WIDGET  (.se-pc)
   ===================================================== */

/* Elementor container reset */
.elementor-widget-se_pricing_table .elementor-widget-container {
  padding: 0 !important;
  margin:  0 !important;
}

.se-pc {
  padding: 9rem 0 11rem;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}

/* Section header */
.se-pc__hd-wrap { margin-bottom: 5rem; }
.se-pc__hd { text-align: center; }

.se-pc__ey {
  font-family: var(--sans);
  font-size: .48rem;
  font-weight: 300;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-bottom: 1.4rem;
}
.se-pc__ey::before,
.se-pc__ey::after {
  content: '';
  width: 18px; height: 1px;
  background: var(--gold);
  opacity: .6;
}

.se-pc__h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--text-1);
  line-height: 1.08;
}
.se-pc__h2 em { font-style: italic; color: rgba(244,240,232,.45); }

.se-pc__hdesc {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 200;
  line-height: 1.9;
  color: rgba(244,240,232,.82);
  max-width: 420px;
  margin: 1.2rem auto 0;
}

/* ── Grid ─────────────────────────────────────────── */
/* 1px gap filled with rule-2 color = gold divider lines between cards */
.se-pc__grid {
  display: grid;
  gap: 1px;
  background: var(--rule-2);
  border: 1px solid var(--rule-2);
}
.se-pc__grid[data-cols="1"] { grid-template-columns: 1fr; }
.se-pc__grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.se-pc__grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }

/* ── Card ─────────────────────────────────────────── */
.se-pc__card {
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .4s;
}
.se-pc__card:hover { background: #0f0d0b; }

/* Gold top-bar reveal */
.se-pc__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.se-pc__card:hover::before { transform: scaleX(1); }

/* Badge */
.se-pc__badge {
  position: absolute; top: 0; right: 0;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  padding: .38rem .9rem;
  z-index: 1;
}

/* ── Head block ───────────────────────────────────── */
.se-pc__head {
  padding: 2.8rem 2.5rem 2rem;
  border-bottom: 1px solid var(--rule);
}
.se-pc__eyebrow {
  font-family: var(--sans);
  font-size: .52rem;
  font-weight: 200;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(200,169,110,.75);
  display: block;
  margin-bottom: .9rem;
}
.se-pc__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text-1);
  letter-spacing: .04em;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}
.se-pc__tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.se-pc__tag {
  font-family: var(--sans);
  font-size: .46rem;
  font-weight: 200;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,240,232,.52);
  border: 1px solid var(--rule);
  padding: .3rem .7rem;
  white-space: nowrap;
}

/* ── Pricing block ────────────────────────────────── */
.se-pc__pricing {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--rule);
}
.se-pc__pricing-lbl {
  font-family: var(--sans);
  font-size: .42rem;
  font-weight: 200;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(200,169,110,.55);
  display: block;
  margin-bottom: 1.2rem;
}
.se-pc__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .6rem 0;
  border-bottom: 1px solid var(--rule);
  gap: 1rem;
}
/* last price row removes its own bottom border — savings <p> is a different element so
   :last-of-type correctly identifies the final .se-pc__price-row div */
.se-pc__price-row:last-of-type { border-bottom: none; }
.se-pc__price-name {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 200;
  color: rgba(244,240,232,.82);
  letter-spacing: .04em;
}
.se-pc__price-right { text-align: right; flex-shrink: 0; }
.se-pc__price-val {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-1);
  letter-spacing: .02em;
  white-space: nowrap;
  display: block;
}
.se-pc__price-unit {
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 200;
  color: rgba(244,240,232,.52);
  letter-spacing: .1em;
  display: block;
}
.se-pc__savings {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 200;
  letter-spacing: .08em;
  color: var(--gold);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.se-pc__savings::before {
  content: '';
  width: 12px; height: 1px;
  background: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}

/* ── Body block ───────────────────────────────────── */
.se-pc__body {
  padding: 1.8rem 2.5rem;
  border-bottom: 1px solid var(--rule);
}
.se-pc__body p {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 200;
  line-height: 1.9;
  color: rgba(244,240,232,.82);
}

/* ── Includes block ───────────────────────────────── */
.se-pc__includes {
  padding: 1.8rem 2.5rem;
  flex: 1; /* pushes CTA to the bottom in equal-height rows */
}
.se-pc__inc-lbl {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 200;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(200,169,110,.55);
  display: block;
  margin-bottom: 1.2rem;
}
.se-pc__inc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.se-pc__inc-list li {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 200;
  color: rgba(244,240,232,.82);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.se-pc__inc-list li::before {
  content: '✓';
  color: var(--gold);
  opacity: .6;
  flex-shrink: 0;
  font-size: .6rem;
  margin-top: .12em;
}
.se-pc__inc-list li.not { color: rgba(244,240,232,.4); }
.se-pc__inc-list li.not::before { content: '×'; opacity: .3; }
.se-pc__inc-group { margin-top: 1.6rem; }

/* ── CTA block ────────────────────────────────────── */
.se-pc__cta {
  padding: 2rem 2.5rem 2.5rem;
  border-top: 1px solid var(--rule);
}
.se-pc__btn {
  display: block;
  width: 100%;
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-2);
  border-radius: 0;
  padding: 1.1rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: color .4s;
  box-shadow: none;
}
/* Elementor link override */
.se-pc .se-pc__btn,
.se-pc .se-pc__btn:hover,
.se-pc .se-pc__btn:focus,
.se-pc .se-pc__btn:visited {
  color: var(--gold) !important;
  text-decoration: none !important;
}
.se-pc__btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.se-pc .se-pc__btn:hover { color: var(--bg) !important; }
.se-pc__btn:hover::before { transform: translateX(0); }
.se-pc__btn-inner { position: relative; z-index: 1; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .se-pc__grid[data-cols="3"] { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .se-pc { padding: 5rem 0 6rem; }
  .se-pc__hd-wrap { margin-bottom: 3rem; }
  .se-pc .se-wrap { padding: 0 20px; }
  .se-pc__grid[data-cols="2"],
  .se-pc__grid[data-cols="3"] { grid-template-columns: 1fr; }
  .se-pc__head, .se-pc__pricing, .se-pc__body,
  .se-pc__includes, .se-pc__cta {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

/* =====================================================
   HEADER SVG LOGO OVERRIDE
   ===================================================== */
.hdr-logo svg {
  width: 150px;
  max-width: 38vw;
  height: auto;
  display: block;
  transition: opacity .3s;
}
.hdr-logo:hover svg { opacity: .75; }

.mob-menu-logo svg {
  width: 130px;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .hdr-logo svg { width: 110px; }
}

/* =====================================================
   FOOTER SVG LOGO OVERRIDE
   ===================================================== */
.ftr-logo {
  font-size: 0;
  line-height: 0;
}
.ftr-logo svg {
  width: 192px;
  max-width: 55vw;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: opacity .3s;
}
.ftr-logo:hover svg { opacity: .75; }

@media (max-width: 480px) {
  .ftr-logo svg { width: 144px; }
}


/* =====================================================
   FAQ WIDGET  (.se-faq)
   ===================================================== */
.se-faq {
  padding: 8rem 0 9rem;
  background: var(--bg);
}

.se-faq__wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Header */
.se-faq__hd {
  max-width: 640px;
}
.se-faq__h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-1);
  margin: .6rem 0 1rem;
}
.se-faq__h2 em {
  font-style: italic;
  color: var(--gold);
}
.se-faq__desc {
  font-family: var(--sans);
  font-size: .875rem;
  letter-spacing: .05em;
  line-height: 1.8;
  color: var(--text-3);
}

/* List */
.se-faq__list {
  border-top: .5px solid var(--rule-2);
}

.se-faq__item {
  border-bottom: .5px solid var(--rule);
}

.se-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.8rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
/* Reset all button states */
.se-faq .se-faq__q,
.se-faq .se-faq__q:hover,
.se-faq .se-faq__q:focus,
.se-faq .se-faq__q:active,
.se-faq .se-faq__q:focus-visible {
  outline: none;
  box-shadow: none;
}

.se-faq__q-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-1);
  transition: color .25s;
}
.se-faq__item.open .se-faq__q-text { color: var(--gold); }

/* Plus/minus icon */
.se-faq__icon {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
}
.se-faq__icon::before,
.se-faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
.se-faq__icon::before {
  width: 100%; height: 1.5px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}
.se-faq__icon::after {
  width: 1.5px; height: 100%;
  top: 0; left: 50%;
  transform: translateX(-50%);
}
.se-faq__item.open .se-faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* Answer panel */
.se-faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.se-faq__a[hidden] {
  display: block;
  visibility: hidden;
}
.se-faq__item.open .se-faq__a {
  visibility: visible;
}

.se-faq__a-inner {
  font-family: var(--sans);
  font-size: .9rem;
  line-height: 1.9;
  letter-spacing: .03em;
  color: var(--text-2);
  padding: 0 0 2rem;
  max-width: 72ch;
}

@media (max-width: 768px) {
  .se-faq { padding: 6rem 0 7rem; }
  .se-faq .se-wrap { padding: 0 20px; }
  .se-faq__h2      { font-size: clamp(2rem, 7vw, 2.8rem); }
  .se-faq__q-text  { font-size: clamp(1rem, 5vw, 1.3rem); }
  .se-faq__q       { padding: 1.4rem 0; }
  .se-faq__a-inner { font-size: .875rem; }
}


/* =====================================================
   LUXURY ELEMENTOR FORM  (.se-luxury-form)
   Add this CSS class in Elementor → Advanced → CSS Classes
   on the native Elementor Form widget.
   In Elementor editor set each field column width to 50%
   (or 100% for full-width fields like textarea/submit).
   ===================================================== */

/* Widget container reset */
.elementor-widget-form.se-luxury-form .elementor-widget-container {
  padding: 0 !important;
  margin:  0 !important;
}

/* Fields wrapper — flex with column gap */
.se-luxury-form .elementor-form-fields-wrapper {
  display:     flex !important;
  flex-wrap:   wrap !important;
  align-items: flex-start !important;
  column-gap:  2.8rem !important;
  row-gap:     0 !important;
}

/* Each field group */
.se-luxury-form .elementor-field-group {
  display:        flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  position:       relative;
  padding:        0 0 0.5rem !important;
  margin:         0 0 1.4rem !important;
  border:         none !important;
  box-sizing:     border-box;
  /* underline */
  border-bottom:  1px solid rgba(244,240,232,.12) !important;
}

/* Correct width for 50% columns (accounts for 2.8rem gap) */
.se-luxury-form .elementor-col-50 {
  width: calc(50% - 1.4rem) !important;
}
.se-luxury-form .elementor-col-100 {
  width: 100% !important;
}

/* Gold animated underline on focus (uses ::after so it sits on top) */
.se-luxury-form .elementor-field-group::after {
  content: '';
  position:   absolute;
  bottom: -1px; left: 50%; right: 50%;
  height:     1px;
  background: var(--gold);
  transition: left .4s cubic-bezier(.4,0,.2,1),
              right .4s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.se-luxury-form .elementor-field-group:focus-within::after { left: 0; right: 0; }

/* No underline on checkbox / submit rows */
.se-luxury-form .elementor-field-type-checkbox,
.se-luxury-form .elementor-field-type-acceptance,
.se-luxury-form .elementor-field-type-submit {
  border-bottom: none !important;
}
.se-luxury-form .elementor-field-type-checkbox::after,
.se-luxury-form .elementor-field-type-acceptance::after,
.se-luxury-form .elementor-field-type-submit::after { display: none !important; }

/* ── Label ── */
.se-luxury-form .elementor-field-label {
  font-family:    var(--sans) !important;
  font-size:      .48rem !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color:          var(--text-3) !important;
  margin-bottom:  .55rem !important;
  line-height:    1 !important;
  text-align:     left !important;
  width:          100% !important;
  transition:     color .35s;
  order: 0 !important;
}
.se-luxury-form .elementor-field-group:focus-within > .elementor-field-label { color: var(--gold) !important; }

/* ── Text inputs & textarea ── */
.se-luxury-form .elementor-field-textual {
  background:     transparent !important;
  border:         none !important;
  border-radius:  0 !important;
  outline:        none !important;
  box-shadow:     none !important;
  padding:        .4rem 0 !important;
  font-family:    var(--sans) !important;
  font-size:      .88rem !important;
  letter-spacing: .03em !important;
  color:          var(--text-1) !important;
  width:          100% !important;
  min-height:     unset !important;
  height:         auto !important;
  transition:     color .3s;
  order: 1 !important;
}
.se-luxury-form textarea.elementor-field-textual {
  resize:      none !important;
  height:      88px !important;
  line-height: 1.8 !important;
}
.se-luxury-form .elementor-field-textual::placeholder {
  color:      rgba(244,240,232,.38) !important;
  font-style: italic !important;
}

/* ── Select ── */
.se-luxury-form .elementor-select-wrapper {
  position: relative;
  width:    100%;
  order: 1 !important;
}
.se-luxury-form .elementor-select-wrapper select {
  background:      transparent !important;
  border:          none !important;
  border-radius:   0 !important;
  outline:         none !important;
  box-shadow:      none !important;
  padding:         .4rem 1.4rem .4rem 0 !important;
  font-family:     var(--sans) !important;
  font-size:       .88rem !important;
  letter-spacing:  .03em !important;
  color:           var(--text-1) !important;
  width:           100% !important;
  cursor:          pointer;
  -webkit-appearance: none;
  appearance:      none;
}
.se-luxury-form .elementor-select-wrapper select option { background: var(--bg-2); color: var(--text-1); }
/* Hide Elementor's SVG caret div (newer Elementor uses .select-caret-down-wrapper) */
.se-luxury-form .select-caret-down-wrapper { display: none !important; }
/* Also kill any legacy i / ::before variants */
.se-luxury-form .elementor-select-wrapper > i,
.se-luxury-form .elementor-select-wrapper::before {
  display: none !important;
  content: none !important;
}
/* Reset wrapper div itself (it also carries .elementor-field) */
.se-luxury-form .elementor-field.elementor-select-wrapper {
  border:     none !important;
  background: transparent !important;
  padding:    0 !important;
  box-shadow: none !important;
}
/* Our single gold arrow */
.se-luxury-form .elementor-select-wrapper::after {
  content:        '↓';
  position:       absolute;
  right:          0; top: 50%;
  transform:      translateY(-50%);
  color:          var(--gold);
  font-size:      .75rem;
  line-height:    1;
  pointer-events: none;
}

/* ── Checkboxes → chip buttons ── */
.se-luxury-form .elementor-field-type-checkbox .elementor-field-subgroup,
.se-luxury-form .elementor-field-type-acceptance .elementor-field-subgroup {
  display:   flex !important;
  flex-wrap: wrap !important;
  gap:       .5rem !important;
}
.se-luxury-form .elementor-field-option {
  display:  flex !important;
  position: relative;
}
.se-luxury-form .elementor-field-option input[type="checkbox"],
.se-luxury-form .elementor-field-option input[type="radio"] {
  -webkit-appearance: none;
  appearance:  none;
  position:    absolute;
  width: 0; height: 0;
  opacity: 0;
  pointer-events: none;
}
.se-luxury-form .elementor-field-option > label {
  border:         1px solid rgba(244,240,232,.2) !important;
  padding:        .44rem 1rem !important;
  font-family:    var(--sans) !important;
  font-size:      .52rem !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color:          var(--text-3) !important;
  cursor:         pointer;
  transition:     border-color .35s, background .35s, color .35s;
  user-select:    none;
  line-height:    1.4 !important;
  margin:         0 !important;
}
.se-luxury-form .elementor-field-option:has(input:checked) > label {
  border-color: var(--gold-2) !important;
  background:   var(--gold-3) !important;
  color:        var(--gold) !important;
}
.se-luxury-form .elementor-field-option > label:hover { border-color: rgba(200,169,110,.32) !important; }

/* ── Submit button ── */
.se-luxury-form .elementor-button-wrapper { width: 100%; }
.se-luxury-form .elementor-button {
  display:        block !important;
  width:          100% !important;
  padding:        1.3rem !important;
  background:     transparent !important;
  border:         1px solid var(--gold) !important;
  border-radius:  0 !important;
  color:          var(--gold) !important;
  font-family:    var(--sans) !important;
  font-size:      .6rem !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  cursor:         pointer;
  position:       relative;
  overflow:       hidden;
  transition:     color .48s !important;
  box-shadow:     none !important;
  text-align:     center !important;
}
.se-luxury-form .elementor-button::before {
  content:    '';
  position:   absolute; inset: 0;
  background: var(--gold);
  transform:  translateX(-101%);
  transition: transform .48s cubic-bezier(.4,0,.2,1);
}
.se-luxury-form .elementor-button:hover          { color: var(--bg) !important; }
.se-luxury-form .elementor-button:hover::before  { transform: translateX(0); }
.se-luxury-form .elementor-button .elementor-button-text,
.se-luxury-form .elementor-button span           { position: relative; z-index: 1; }

/* ── Status messages ── */
.se-luxury-form .elementor-message {
  font-family:    var(--sans) !important;
  font-size:      .75rem !important;
  letter-spacing: .06em !important;
  margin-top:     1rem;
}
.se-luxury-form .elementor-message-success { color: var(--gold) !important; }
.se-luxury-form .elementor-message-error   { color: #e08070 !important; }

@media (max-width: 768px) {
  .se-luxury-form .elementor-col-50 {
    width: 100% !important;
  }
}
