:root {
  --cream:     #F9F6F1;
  --off-white: #FDFCFA;
  --warm:      #F4EEE6;
  --rose-pale: #FBF0F2;
  --rose-soft: #F2DADE;
  --rose-mid:  #E8C5CB;
  --red:       #B8102A;
  --red-hover: #94091F;
  --red-pale:  #FBE9EC;
  --charcoal:  #1A1A1A;
  --ink:       #2C2C2C;
  --slate:     #5A5A5A;
  --muted:     #9A9A9A;
  --border:    #E8E2DB;
  --gold:      #C4973A;
  --gold-lt:   #E8D4A8;
  --shadow:    0 4px 32px rgba(26,26,26,0.08);
  --shadow-lg: 0 16px 60px rgba(26,26,26,0.12);
  --red-glow:  0 8px 28px rgba(184,16,42,0.2);
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose-mid); border-radius: 3px; }

/* ─── CURSOR ─── */
#cur {
  position: fixed; width: 8px; height: 8px;
  background: var(--red); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
}
#cur-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: all .1s ease; opacity: .5;
}
a:hover ~ #cur, button:hover ~ #cur { width: 16px; height: 16px; }

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0;
  background: var(--charcoal);
  z-index: 999999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.ld-logo {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--off-white);
  letter-spacing: .02em;
  animation: fadeUp .8s ease forwards;
}
.ld-logo em { color: var(--red); font-style: normal; }
.ld-bar { width: 180px; height: 1px; background: rgba(255,255,255,.1); overflow: hidden; }
.ld-fill { height: 100%; width: 0; background: var(--red); animation: fillBar 1.8s .3s ease forwards; }
.ld-pct {
  font-size: .65rem; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  font-family: 'Outfit', sans-serif;
}
@keyframes fillBar { to { width: 100%; } }
@keyframes fadeUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: none; } }

/* ─── NAVBAR ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9999; padding: 0;
  transition: all .4s ease;
}
.nav-inner {
  display: flex; align-items: center;
  padding: 20px 48px;
  transition: all .4s ease;
}
#nav.scrolled .nav-inner {
  padding: 12px 48px;
  background: rgba(249,246,241,.97);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  text-decoration: none; display: flex; align-items: center; gap: 12px;
  margin-right: auto;
}
.nav-brand-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: white; flex-shrink: 0;
  transition: transform .3s;
}
.nav-brand:hover .nav-brand-icon { transform: rotate(-10deg) scale(1.08); }
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--charcoal); line-height: 1;
}
.nav-brand-name em { color: var(--red); font-style: normal; }
.nav-brand-sub {
  font-size: .58rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link-x {
  font-size: .72rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--slate); text-decoration: none;
  padding: 6px 14px; position: relative;
  transition: color .3s;
}
.nav-link-x::after {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; width: 0; height: 1px;
  background: var(--red); transform: translateX(-50%);
  transition: width .35s ease;
}
.nav-link-x:hover { color: var(--red); }
.nav-link-x:hover::after, .nav-link-x.active::after { width: 55%; }
.nav-link-x.active { color: var(--red); }
.nav-cta-btn {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: white; text-decoration: none;
  background: var(--red); padding: 9px 24px;
  border-radius: 40px; margin-left: 12px;
  border: 1.5px solid var(--red);
  transition: all .3s;
}
.nav-cta-btn:hover { background: transparent; color: var(--red); }

/* Mobile nav */
.mob-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 6px; padding: 6px 10px; cursor: pointer;
  color: var(--ink); font-size: 1.1rem;
  transition: all .3s;
}
.mob-toggle:hover { background: var(--red); color: white; border-color: var(--red); }
.mob-menu {
  display: none;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.mob-menu.open { display: block; }
.mob-link {
  display: block; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--slate);
  text-decoration: none; padding: 11px 0;
  border-bottom: 1px solid var(--border);
  transition: color .3s;
}
.mob-link:hover { color: var(--red); }
.mob-link:last-child { border: none; }

/* ─── DROPDOWN SUBMENU (DESKTOP) ─── */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-block;
}
.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(253, 252, 250, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  z-index: 10000;
  text-align: left;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--off-white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.nav-dropdown-item {
  display: block;
  padding: 10px 24px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.25s var(--ease);
}
.nav-dropdown-item:hover {
  background: var(--rose-pale);
  color: var(--red);
  padding-left: 28px;
}
.nav-chevron {
  font-size: 0.55rem;
  margin-left: 5px;
  transition: transform 0.3s var(--ease);
  display: inline-block;
  vertical-align: middle;
}
.nav-dropdown-wrapper:hover .nav-chevron {
  transform: rotate(180deg);
}

/* ─── DROPDOWN SUBMENU (MOBILE) ─── */
.mob-dropdown {
  border-bottom: 1px solid var(--border);
}
.mob-dropdown .mob-link {
  border-bottom: none;
  cursor: pointer;
}
.mob-submenu {
  display: none;
  padding-left: 16px;
  background: var(--cream);
  border-left: 2px solid var(--rose-soft);
  margin-bottom: 8px;
  transition: all 0.3s var(--ease);
}
.mob-submenu.open {
  display: block;
}
.mob-sub-link {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  padding: 9px 0;
  transition: color 0.3s;
}
.mob-sub-link:hover {
  color: var(--red);
}
.mob-chevron {
  font-size: 0.7rem;
  transition: transform 0.3s var(--ease);
}
.mob-chevron.rotate {
  transform: rotate(180deg);
}


/* ─── SECTIONS COMMON ─── */
section { padding: 100px 0; }
.s-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .66rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 14px;
}
.s-tag::before { content: ''; width: 22px; height: 1px; background: var(--red); }
.s-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--charcoal); margin-bottom: 12px;
}
.s-h2 em { font-style: italic; color: var(--red); }
.s-p {
  font-size: .92rem; font-weight: 300;
  color: var(--slate); line-height: 1.85; max-width: 500px;
}

/* ─── COMMON BUTTONS ─── */
.btn-fill {
  background: var(--red); color: white;
  font-size: .74rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 30px; border-radius: 2px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--red);
  transition: all .35s var(--ease);
  box-shadow: var(--red-glow);
}
.btn-fill:hover { background: transparent; color: var(--red); box-shadow: none; }
.btn-ghost {
  background: transparent; color: var(--ink);
  font-size: .74rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 12px 26px; border-radius: 2px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--border);
  transition: all .35s var(--ease);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

/* ─── FOOTER ─── */
#footer {
  background: var(--charcoal);
  padding-top: 64px;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media(max-width:991px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:575px) { .footer-top { grid-template-columns: 1fr; } }
.f-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem; color: white; margin-bottom: 8px;
}
.f-logo span { color: var(--red); }
.f-tagline { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; }
.f-desc { font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 240px; }
.f-soc { display: flex; gap: 8px; margin-top: 20px; }
.f-soc-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); text-decoration: none; font-size: .85rem;
  transition: all .3s;
}
.f-soc-btn:hover { background: var(--red); border-color: var(--red); color: white; }
.f-col-title { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; }
.f-link {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 300;
  color: rgba(255,255,255,.5); text-decoration: none;
  margin-bottom: 10px;
  transition: color .3s, transform .3s;
}
.f-link i { font-size: .6rem; color: var(--red); }
.f-link:hover { color: white; transform: translateX(4px); }
.f-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.f-contact-icon { color: var(--red); font-size: .9rem; margin-top: 1px; flex-shrink: 0; }
.f-contact-val { font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.5; }
.footer-bot {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.f-copy { font-size: .75rem; color: rgba(255,255,255,.22); }
.f-copy span { color: var(--red); }

/* ─── FLOATS ─── */
.wa-btn {
  position: fixed; bottom: 26px; right: 26px;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none; z-index: 9000;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  animation: bobUp 3s ease-in-out infinite;
}
.wa-btn:hover { color: white; transform: scale(1.1); animation: none; }
@keyframes bobUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
#btt {
  position: fixed; bottom: 26px; left: 26px;
  width: 40px; height: 40px; border-radius: 50%;
  background: white; border: 1px solid var(--border);
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 9000;
  opacity: 0; pointer-events: none;
  transition: all .3s; box-shadow: var(--shadow);
  font-size: .9rem;
}
#btt.show { opacity: 1; pointer-events: auto; }
#btt:hover { background: var(--red); color: white; border-color: var(--red); }

/* ─── LIGHTBOX ─── */
#lb {
  position: fixed; inset: 0;
  background: rgba(26,26,26,.96); z-index: 999999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
#lb.on { opacity: 1; pointer-events: auto; }
#lb img { max-width: 90vw; max-height: 88vh; border-radius: 4px; }
#lb-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none; color: white;
  font-size: 2rem; cursor: pointer; opacity: .65;
  transition: opacity .2s;
}
#lb-close:hover { opacity: 1; }

/* ─── ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s, transform .8s; }
.reveal.on { opacity: 1; transform: none; }
.rev-l { opacity: 0; transform: translateX(-28px); transition: opacity .8s, transform .8s; }
.rev-r { opacity: 0; transform: translateX(28px);  transition: opacity .8s, transform .8s; }
.rev-l.on, .rev-r.on { opacity: 1; transform: none; }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}
.d4{transition-delay:.32s}.d5{transition-delay:.40s}.d6{transition-delay:.48s}

/* ─── RESPONSIVE BASE ─── */
@media(max-width:991px) {
  .nav-inner { padding: 14px 24px; }
  .nav-links { display: none; }
  .mob-toggle { display: block; }
}
@media(max-width:767px) {
  section { padding: 64px 0; }
}
