/* ══════════════════════════════════════
   SOOME MED SPA — Shared Styles
   ══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500;600&family=Noto+Sans+KR:wght@400;500&display=swap');

:root {
  --cream:   #1a1a1a;
  --beige:   #141414;
  --sand:    #222222;
  --taupe:   #c4b5a0;
  --mocha:   rgba(255,255,255,0.72);
  --espresso:#f0f0f0;
  --dark:    #111111;
  --gold:    #c9a96e;
  --gold-lt: #e8d5b0;
  --white:   #ffffff;
  --text:    #3a2e26;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #1e1e1e;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* ── BUTTONS ───────────────────────── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #c9a96e 0%, #a07830 60%, #c9a96e 100%);
  background-size: 200% auto;
  color: #fff;
  padding: 14px 36px; text-decoration: none;
  font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  font-family: 'Jost', sans-serif; font-weight: 500;
  transition: background-position .4s ease, transform .2s;
  border: none; cursor: pointer;
  box-shadow: 0 2px 12px rgba(201,169,110,.35);
}
.btn-primary:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(201,169,110,.5); }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--espresso);
  padding: 13px 34px; text-decoration: none;
  font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  font-family: 'Jost', sans-serif; font-weight: 400;
  border: 1.5px solid var(--gold);
  transition: background .25s, color .25s, box-shadow .25s;
}
.btn-outline:hover { background: var(--gold); color: #fff; box-shadow: 0 4px 16px rgba(201,169,110,.4); }

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #c9a96e 0%, #a07830 60%, #c9a96e 100%);
  background-size: 200% auto;
  color: #fff;
  padding: 14px 36px; text-decoration: none;
  font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  font-family: 'Jost', sans-serif; font-weight: 500;
  transition: background-position .4s ease, box-shadow .25s;
  border: none; cursor: pointer;
  box-shadow: 0 2px 12px rgba(201,169,110,.35);
}
.btn-gold:hover { background-position: right center; box-shadow: 0 4px 20px rgba(201,169,110,.5); }

#soome-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 30px;
  background: #1c1208;
  border-bottom: 2px solid var(--gold);
  transition: padding .35s, background .35s, box-shadow .35s;
}
#soome-nav.scrolled {
  padding: 8px 30px;
  background: #faf7f2;
  border-bottom: 1px solid rgba(196,181,160,.25);
  box-shadow: 0 2px 24px rgba(74,55,40,.08);
}
.nav-logo-wrap { text-decoration: none; display:flex; align-items:center; }
.nav-logo-wrap svg { display:block; }

.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  text-decoration: none;
  color: #fff;
  font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 600; padding: 10px 14px; display: block;
  transition: color .25s;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--gold); text-shadow: 0 0 12px rgba(201,169,110,.5); }
#soome-nav.scrolled .nav-links > li > a { color: var(--espresso); text-shadow: none; font-weight: 600; }
#soome-nav.scrolled .nav-links > li > a:hover { color: var(--gold); }

/* nav on cream — kept solid, no override needed */


/* hamburger white on hero */
.hamburger span { display: block; width: 26px; height: 1.5px; background: rgba(255,255,255,.9); transition: .3s; }
#soome-nav.scrolled .hamburger span { background: var(--espresso); }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 12px; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: #0d0d0d; min-width: 220px;
  border-top: 2px solid #c9a96e;
  border: 1px solid rgba(201,169,110,.25);
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  display: none; flex-direction: column;
  list-style: none; padding: 10px 0 10px;
  z-index: 999;
  /* padding-top creates bridge so mouse can reach menu without gap */
  margin-top: 0;
}
/* invisible bridge between nav link and dropdown */
.nav-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 8px;
  background: transparent;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: flex; }
.dropdown-menu li a {
  display: block; padding: 10px 20px;
  text-decoration: none; color: rgba(255,255,255,.82) !important; -webkit-text-fill-color: rgba(255,255,255,.82) !important;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 400; transition: background .2s, color .2s;
}
.dropdown-menu li a:hover { background: rgba(201,169,110,.1); color: #ffd700 !important; -webkit-text-fill-color: #ffd700 !important; }

.nav-book {
  background: linear-gradient(135deg, #c9a96e 0%, #a07830 60%, #c9a96e 100%);
  background-size: 200% auto;
  color: #fff !important;
  padding: 10px 24px; letter-spacing: 2px;
  font-size: 14px; text-transform: uppercase;
  font-family: 'Jost', sans-serif; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  transition: background-position .4s ease, box-shadow .25s;
  box-shadow: 0 2px 12px rgba(201,169,110,.35);
}
.nav-book:hover { background-position: right center !important; box-shadow: 0 4px 20px rgba(201,169,110,.5) !important; color: #fff !important; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }

/* mobile nav */
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,13,13,.99);
  z-index: 1001; flex-direction: column;
  padding: 100px 36px 40px; gap: 0; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-size: 28px; color: var(--espresso); line-height: 1;
  padding: 8px; z-index: 2;
}
.mobile-menu a {
  display: block; padding: 16px 0;
  text-decoration: none; color: #f0f0f0;
  font-size: 17px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 400; border-bottom: 1px solid rgba(201,169,110,.15);
  transition: color .2s;
}
.mobile-menu a:active, .mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mm-group-label {
  font-size: 11px; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; margin-top: 22px; margin-bottom: 4px;
  display: block;
}

/* mobile services accordion toggle */
.mm-services-toggle {
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 16px 0;
  color: #f0f0f0; font-size: 17px; letter-spacing: 2px;
  text-transform: uppercase; font-family: 'Jost', sans-serif; font-weight: 400;
  border-bottom: 1px solid rgba(201,169,110,.15);
  transition: color .2s;
}
.mm-services-toggle:hover { color: var(--gold); }
.mm-chevron { font-size: 18px; transition: transform .3s; display: inline-block; }
.mm-sub { flex-direction: column; padding-left: 0; }
.mm-sub a { padding-left: 20px; font-size: 14px; letter-spacing: 1.5px; }


/* ── FOOTER ────────────────────────── */
#soome-footer {
  background: var(--dark); color: var(--taupe);
}
.footer-top {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; padding: 50px 24px 40px;
  border-bottom: 1px solid rgba(196,181,160,.1);
}
@media (min-width: 901px) {
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; padding: 70px 80px 50px; }
}
.footer-brand-text {
  font-size: 13px; line-height: 1.9; color: var(--taupe);
  max-width: 230px; margin: 20px 0 28px;
}
.social-row { display: flex; gap: 12px; align-items: center; }
.social-link {
  width: 38px; height: 38px; border: 1px solid rgba(196,181,160,.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--taupe);
  transition: border-color .25s, color .25s, background .25s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.08); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col-title {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-lt); font-family: 'Jost', sans-serif; font-weight: 500;
  margin-bottom: 22px; display: flex; align-items: center; gap: 8px;
}
.footer-col-title svg { width: 14px; height: 14px; fill: var(--gold); opacity: .8; flex-shrink: 0; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { display: flex; align-items: center; gap: 10px; }
.footer-col ul li svg { width: 15px; height: 15px; fill: var(--gold); opacity: .85; flex-shrink: 0; }
.footer-col ul a {
  text-decoration: none; color: var(--taupe); font-size: 15px;
  transition: color .2s;
}
/* prevent browser default blue on tel/wa links */
a[href^="tel:"], a[href^="https://wa.me"] { color: var(--taupe); text-decoration: none; }
a[href^="tel:"]:hover, a[href^="https://wa.me"]:hover { color: var(--gold-lt); }
.footer-col ul a:hover { color: var(--gold-lt); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 80px;
  font-size: 14px; color: rgba(220,200,170,.75); letter-spacing: 1px;
}
.footer-bottom a { color: rgba(220,200,170,.75); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-lt); }

/* ── MARQUEE STRIP ─────────────────── */
.strip {
  background: var(--espresso); overflow: hidden; padding: 13px 0;
}
.strip-track {
  display: flex; width: max-content;
  animation: marqueeAnim 30s linear infinite;
}
.strip-item {
  white-space: nowrap; padding: 0 36px;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold);
}
.strip-dot { color: var(--gold-lt); padding: 0 10px; font-style: normal; font-weight: 400; }
@keyframes marqueeAnim {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION HELPERS ───────────────── */
.section-eyebrow {
  font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 16px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px); font-weight: 300;
  line-height: 1.12; color: #f0f0f0;
}
.section-title em { font-style: italic; background:linear-gradient(135deg,#8b6914,#c9a96e,#ffd700,#fffacd,#ffd700,#c9a96e,#8b6914);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.section-title.light { color: #ffffff; }
.section-title.light em { color: var(--gold-lt); }

/* ── FADE-UP ───────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── MOBILE GLOBAL ─────────────────── */
@media (max-width: 900px) {
  #soome-nav { padding: 10px 16px; }
  #soome-nav.scrolled { padding: 8px 16px; }
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .footer-bottom { padding: 20px 16px; flex-direction: column; gap: 8px; text-align: center; }

  /* Section padding */
  .section-title { font-size: clamp(28px, 7vw, 42px); }
  .section-eyebrow { font-size: 10px; }

  /* About */
  .about { grid-template-columns: 1fr; }
  .about-vis { min-height: 280px; }
  .about-text { padding: 48px 20px; }

  /* Process */
  .process-section { padding: 60px 20px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps::before { display: none; }
  .step-circle { width: 56px; height: 56px; font-size: 22px; }
  .step-name { font-size: 16px; }
  .step-desc { font-size: 13px; }

  /* Services */
  .services-section { padding: 60px 0 40px; }
  .services-header { padding: 0 20px; }
  .service-slide { width: 85vw; }
  .slideshow-controls { padding: 0 20px; }

  /* Testimonials */
  .testimonials-section { padding: 60px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner { flex-direction: column; padding: 60px 20px; text-align: center; }

  /* Contact */
  .contact-section { grid-template-columns: 1fr; }
  .contact-info { padding: 60px 20px; }
  .contact-form-wrap { padding: 60px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Strip */
  .strip { padding: 10px 0; }

  /* Buttons */
  .btn-gold, .btn-primary { padding: 12px 24px; font-size: 12px; }
}

/* ── NAV SLOGAN ── */
.nav-slogan {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 11px; font-style: normal; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  border-left: 1px solid rgba(201,169,110,.6);
  padding-left: 16px; line-height: 1.5;
}
#soome-nav.scrolled .nav-slogan,
#soome-nav.on-cream .nav-slogan { color: #4a3728; }
@media (max-width: 900px) {
  .nav-slogan {
    font-size: 8px !important;
    letter-spacing: 2px !important;
    padding-left: 8px !important;
    border-left: 1px solid rgba(201,169,110,.5) !important;
    color: #c9a96e !important;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .soo-badge {
    flex-direction: column !important;
    text-align: center !important;
    padding: 24px 20px !important;
    gap: 12px !important;
    align-items: center !important;
  }
  .soo-badge-char { font-size: 48px !important; }
  .soo-badge-name { font-size: 26px !important; letter-spacing: 3px !important; }
  .soo-badge-content { align-items: center !important; }
  .soo-badge-meanings { justify-content: center !important; text-align: center !important; }
  .soo-badge-meanings span { font-size: 11px !important; letter-spacing: 1.5px !important; white-space: normal !important; text-align: center !important; }
  .soo-badge-origin { font-size: 9px !important; letter-spacing: 3px !important; text-align: center !important; }
}
@media (max-width: 500px) { .nav-slogan { font-size: 8px; letter-spacing: 1px; padding-left: 8px; } }

/* ── Mobile badge fixes ── */
@media (max-width: 900px) {
  .star-inner { gap: 2px; }
  .star-stars { font-size: 11px; letter-spacing: 1px; }
  .star-text { font-size: 7px; letter-spacing: 1px; }
  .wb-frame { border-width: 3px; }
  .wb-env-label span { font-size: 9px; letter-spacing: 1px; }
  .wb-r1 { inset:-8px; }
  .wb-r2 { inset:-14px; }

  /* Make sure badges don't overflow */
  .star-badge { overflow: visible !important; }
  .wedding-badge { overflow: visible !important; }

  /* Hero must not clip badges */
  .hero { overflow: visible; }

  /* Service slideshow mobile */
  .service-slide { width: 88vw !important; height: 380px; }
  .slide-name { font-size: 22px !important; }
  .slide-desc { font-size: 15px !important; }
}

@media (max-width: 900px) {
  .nav-slogan {
    font-size: 8px !important;
    letter-spacing: 2px !important;
    padding-left: 8px !important;
    border-left: 1px solid rgba(201,169,110,.5) !important;
    color: #c9a96e !important;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .soo-badge {
    flex-direction: column !important;
    text-align: center !important;
    padding: 24px 20px !important;
    gap: 12px !important;
    align-items: center !important;
  }
  .soo-badge-char { font-size: 48px !important; }
  .soo-badge-name { font-size: 26px !important; letter-spacing: 3px !important; }
  .soo-badge-content { align-items: center !important; }
  .soo-badge-meanings { justify-content: center !important; text-align: center !important; }
  .soo-badge-meanings span { font-size: 11px !important; letter-spacing: 1.5px !important; white-space: normal !important; text-align: center !important; }
  .soo-badge-origin { font-size: 9px !important; letter-spacing: 3px !important; text-align: center !important; }
}
}

@media (max-width: 900px) {
  #soome-nav { flex-wrap: nowrap; align-items: center; }
  .nav-slogan {
    font-size: 7.5px; letter-spacing: 1px;
    padding-left: 8px; border-left: 1px solid rgba(201,169,110,.4);
    white-space: nowrap; overflow: hidden;
    text-overflow: clip; max-width: 180px;
  }
  .nav-right { flex-shrink: 0; margin-left: auto; }
}

@media (max-width: 900px) {
  .star-stars { font-size: 13px; }
  .star-text { font-size: 8px; }
  .wb-env-label span { font-size: 10px; letter-spacing: 1px; }
}

@media (max-width: 900px) {
  .star-stars { font-size: 10px !important; letter-spacing: 1px !important; }
  .star-text { font-size: 7px !important; letter-spacing: 1px !important; line-height:1.2 !important; }
  .star-inner { gap: 1px !important; padding: 4px !important; }
  .wb-env-label { margin-top: 24px !important; }
  .wb-env-label span { font-size: 8px !important; letter-spacing: 1px !important; line-height:1.3 !important; }
}


@media (max-width: 900px) {
  .nav-slogan {
    font-size: 8px !important;
    letter-spacing: 2px !important;
    padding-left: 8px !important;
    border-left: 1px solid rgba(201,169,110,.5) !important;
    color: #c9a96e !important;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .soo-badge {
    flex-direction: column !important;
    text-align: center !important;
    padding: 24px 20px !important;
    gap: 12px !important;
    align-items: center !important;
  }
  .soo-badge-char { font-size: 48px !important; }
  .soo-badge-name { font-size: 26px !important; letter-spacing: 3px !important; }
  .soo-badge-content { align-items: center !important; }
  .soo-badge-meanings { justify-content: center !important; text-align: center !important; }
  .soo-badge-meanings span { font-size: 11px !important; letter-spacing: 1.5px !important; white-space: normal !important; text-align: center !important; }
  .soo-badge-origin { font-size: 9px !important; letter-spacing: 3px !important; text-align: center !important; }
}

@media (max-width: 900px) {
  .star-stars { font-size: 15px !important; letter-spacing: 2px !important; }
  .star-text { font-size: 9px !important; font-weight: 900 !important; letter-spacing: 1.5px !important; }
  .wb-env-label span { font-size: 10px !important; font-weight: 900 !important; letter-spacing: 1.5px !important; }
}

@media (max-width: 900px) {
  .nav-logo-wrap svg { width: 60px !important; height: 60px !important; }
  #soome-nav > div:first-child { gap: 6px !important; }
  .nav-slogan {
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
    padding-left: 8px !important;
    max-width: none !important;
    overflow: visible !important;
  }
}






/* ── Nav special items ── */
.nav-services-link { color: var(--gold) !important; text-shadow: 0 0 10px rgba(201,169,110,.5) !important; }
.nav-wedding {
  color: #fff !important; background: #c0392b;
  padding: 6px 12px; font-size: 10px; letter-spacing: 1px;
  font-weight: 700; text-decoration: none;
  border-radius: 2px; white-space: nowrap;
  box-shadow: 0 0 10px rgba(231,76,60,.7);
  animation: weddingPulse 2s ease-in-out infinite;
}
@keyframes weddingPulse {
  0%,100% { box-shadow: 0 0 8px rgba(231,76,60,.7); }
  50%      { box-shadow: 0 0 20px rgba(231,76,60,1); }
}

@media (max-width: 900px) {
  .nav-slogan {
    font-size: 8px !important;
    letter-spacing: 2px !important;
    padding-left: 8px !important;
    border-left: 1px solid rgba(201,169,110,.5) !important;
    color: #c9a96e !important;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .soo-badge {
    flex-direction: column !important;
    text-align: center !important;
    padding: 24px 20px !important;
    gap: 12px !important;
    align-items: center !important;
  }
  .soo-badge-char { font-size: 48px !important; }
  .soo-badge-name { font-size: 26px !important; letter-spacing: 3px !important; }
  .soo-badge-content { align-items: center !important; }
  .soo-badge-meanings { justify-content: center !important; text-align: center !important; }
  .soo-badge-meanings span { font-size: 11px !important; letter-spacing: 1.5px !important; white-space: normal !important; text-align: center !important; }
  .soo-badge-origin { font-size: 9px !important; letter-spacing: 3px !important; text-align: center !important; }
}
  .soo-badge-char { font-size: 44px; }
  .soo-badge-name { font-size: 24px; letter-spacing: 3px; text-align: center; }
  .soo-badge-meanings { justify-content: center; }
  .soo-badge-meanings span { font-size: 11px; letter-spacing: 1px; text-align: center; }
  .soo-badge-origin { font-size: 9px; letter-spacing: 2px; text-align: center; }
}


/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #faf7f2 0%, #f0ebe0 50%, #faf7f2 100%);
  padding:90px 80px;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,.12) 0%, transparent 70%);
  pointer-events:none;
}
.cta-banner .section-eyebrow {
  color:var(--gold) !important; font-size:12px; font-weight:700; letter-spacing:5px;
}
.cta-banner .section-title { margin-bottom:12px; color:#1c1c1c !important; font-size:clamp(32px,3.5vw,52px); }
.cta-banner .section-title em {
  color:var(--gold) !important; font-style:italic;
  text-shadow: 0 0 30px rgba(201,169,110,.3);
}
.cta-banner p { font-size:16px; line-height:1.8; color:#7a7570; }
@media(max-width:900px) { .cta-banner { flex-direction:column; padding:60px 20px; text-align:center; } }

/* ── Dropdown category labels ── */
.dropdown-cat {
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  background: linear-gradient(135deg,#8b6914,#c9a96e,#ffd700,#c9a96e,#8b6914) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 700;
  padding: 14px 20px 6px !important;
  pointer-events: none; cursor: default;
  border-top: 1px solid rgba(201,169,110,.15);
  display: block;
}
.dropdown-cat:first-child { border-top: none; }
.dropdown-wide { min-width: 260px !important; }

/* ── MEGA MENU ── */
.nav-mega { position: relative; }
.mega-menu {
  display: none;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #0d0d0d;
  border: 1px solid rgba(201,169,110,.25);
  border-top: 2px solid #c9a96e;
  padding: 28px 32px;
  gap: 40px;
  display: none;
  flex-direction: row;
  min-width: 560px;
  z-index: 999;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.nav-mega:hover .mega-menu { display: flex; }
.mega-col { display: flex; flex-direction: column; gap: 10px; min-width: 160px; }
.mega-cat {
  font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 700; color: #c9a96e;
  margin-bottom: 6px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,169,110,.2);
}
.mega-col a {
  font-family: 'Jost', sans-serif; font-size: 15px; letter-spacing: 1px;
  font-weight: 600;
  color: rgba(255,255,255,.9); text-decoration: none;
  transition: color .2s; padding: 3px 0;
}
.mega-col a:hover { color: #ffd700; }
