/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96B;
  --gold-dark:   #9A7A30;
  --black:       #0A0A0A;
  --off-black:   #111111;
  --green-dark:  #1B6B3A;
  --green:       #2D8653;
  --green-light: #4CAF74;
  --yellow:      #F5C842;
  --white:       #FFFFFF;
  --cream:       #F9F5ED;
  --gray-light:  #F4F4F4;
  --gray:        #888888;
  --text:        #1A1A1A;
  --radius:      12px;
  --shadow:      0 8px 40px rgba(0,0,0,0.10);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── NAVIGATION ────────────────────────────────────────────── */
.st-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s ease;
}
.st-nav.scrolled {
  height: 64px;
  background: rgba(10,10,10,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.st-nav-logo { display: flex; align-items: center; gap: 14px; }
.st-nav-logo svg { height: 48px; width: auto; }
.st-nav-links { display: flex; align-items: center; gap: 28px; }
.st-nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  text-transform: uppercase;
}
.st-nav-links a:hover { color: var(--gold); }
.st-nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.st-nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
.st-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.st-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ──────────────────────────────────────────────────── */
.st-hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 100px 5% 60px;
  text-align: center;
}
/* animated gold particles */
.st-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.st-hero-ring {
  position: absolute;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 50%;
  animation: ringPulse 6s ease-in-out infinite;
}
.st-hero-ring:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -200px; animation-delay: 0s; }
.st-hero-ring:nth-child(2) { width: 400px; height: 400px; bottom: -100px; left: -100px; animation-delay: 2s; }
.st-hero-ring:nth-child(3) { width: 800px; height: 800px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 4s; }
@keyframes ringPulse { 0%,100% { opacity:0.3; transform:scale(1); } 50% { opacity:0.6; transform:scale(1.03); } }
.st-hero-ring:nth-child(3) { animation: ringPulse3 8s ease-in-out infinite; }
@keyframes ringPulse3 { 0%,100% { opacity:0.2; transform:translate(-50%,-50%) scale(1); } 50% { opacity:0.4; transform:translate(-50%,-50%) scale(1.02); } }

.st-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 40px;
  position: relative; z-index: 1;
  animation: fadeUp 1s ease 0.2s both;
}
.st-hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ─── 50th Anniversary SVG Logo ────────────────────────────── */
.st-anniversary-logo {
  position: relative; z-index: 1;
  animation: fadeUp 1s ease 0.4s both;
  margin-bottom: 32px;
}
.st-anniversary-logo svg { width: min(320px, 70vw); height: auto; }

.st-hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--gold-light);
  letter-spacing: 0.03em;
  margin-bottom: 48px;
  position: relative; z-index: 1;
  animation: fadeUp 1s ease 0.6s both;
}

.st-hero-desc {
  max-width: 680px;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin: 0 auto 48px;
  position: relative; z-index: 1;
  animation: fadeUp 1s ease 0.8s both;
}

.st-hero-ctas {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  position: relative; z-index: 1;
  animation: fadeUp 1s ease 1s both;
}
.st-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px;
  border-radius: 4px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; transition: all 0.25s;
  cursor: pointer; border: none;
}
.st-btn-gold { background: var(--gold); color: var(--black); }
.st-btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.st-btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.st-btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.st-hero-members {
  position: relative; z-index: 1;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  animation: fadeUp 1s ease 1.2s both;
}
.st-hero-members p { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.st-member-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.st-member-logo {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  transition: all 0.2s;
}
.st-member-logo:hover { border-color: var(--gold); color: var(--gold); }

.st-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 1; animation: bounce 2s ease infinite;
  color: rgba(255,255,255,0.3); font-size: 11px; letter-spacing: 0.08em;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.st-scroll-hint svg { animation: bounce 2s ease infinite; }
@keyframes bounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(6px); } }

/* ─── SECTION COMMONS ───────────────────────────────────────── */
.st-section { padding: 100px 5%; }
.st-section-inner { max-width: 1200px; margin: 0 auto; }
.st-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.st-section-label::before { content:''; flex: 0 0 24px; height: 2px; background: var(--gold); }
.st-section-label.center { justify-content: center; }
.st-section-label.center::before { display: none; }
.st-h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 800; line-height: 1.15; }
.st-h2-green { color: var(--green-dark); }
.st-lead { font-size: clamp(15px, 1.6vw, 18px); line-height: 1.8; color: #444; max-width: 720px; }

/* ─── ABOUT / TAGLINE ────────────────────────────────────────── */
.st-about {
  background: linear-gradient(135deg, #f0f9f3 0%, #ffffff 50%, #f5f0e0 100%);
  position: relative; overflow: hidden;
}
.st-about::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.st-quote-mark { font-size: 120px; line-height: 1; color: var(--green-light); opacity: 0.2; font-family: Georgia, serif; }
.st-quote-text {
  font-size: clamp(22px, 3.5vw, 40px); font-weight: 800; line-height: 1.2;
  color: var(--text); margin-bottom: 24px;
}
.st-quote-text em { color: var(--green-dark); font-style: normal; }

/* ─── MISSION VISION ─────────────────────────────────────────── */
.st-mv { background: var(--white); }
.st-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; }
.st-mv-card {
  padding: 48px 40px;
  border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.st-mv-card-m { background: var(--green-dark); color: var(--white); }
.st-mv-card-v { background: var(--black); color: var(--white); }
.st-mv-card h3 { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
.st-mv-card-m h3 { color: var(--yellow)!important; }
.st-mv-card-v h3 { color: var(--gold)!important; }
.st-mv-card p { font-size: 16px; line-height: 1.8; opacity: 0.85; }
.st-mv-orbs {
  position: absolute; bottom: -30px; right: -30px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
  opacity: 0.15;
}
.st-mv-orbs span { display: block; width: 50px; height: 50px; border-radius: 50%; background: currentColor; }

/* ─── STATS ──────────────────────────────────────────────────── */
.st-stats { background: var(--green-dark); color: var(--white); }
.st-stats-header { text-align: center; margin-bottom: 60px; }
.st-stats h2 { color: var(--white); }
.st-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.st-stat-card {
  background: rgba(255,255,255,0.07);
  padding: 48px 32px;
  text-align: center;
  border-radius: var(--radius);
  transition: background 0.3s;
}
.st-stat-card:hover { background: rgba(255,255,255,0.12); }
.st-stat-icon { font-size: 36px; margin-bottom: 16px; }
.st-stat-num {
  font-size: clamp(36px, 5vw, 60px); font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.st-stat-suffix { font-size: 0.5em; vertical-align: super; }
.st-stat-label { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; margin-bottom: 12px; }
.st-stat-desc { font-size: 13px; line-height: 1.6; opacity: 0.55; }
.st-cert-row {
  margin-top: 48px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center;
}
.st-cert-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 6px;
  font-size: 13px; font-weight: 600; color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* ─── SERVICES TABS ──────────────────────────────────────────── */
.st-services { background: var(--gray-light); }
.st-services-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.st-tab-btn {
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  background: var(--white);
  color: var(--gray);
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.st-tab-btn:hover { border-color: var(--green); color: var(--green); }
.st-tab-btn.active { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.st-tab-panel { display: none; animation: fadeIn 0.4s ease; }
.st-tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@keyframes fadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.st-service-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.st-service-content h3 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: var(--green-dark); margin-bottom: 16px; }
.st-service-content p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 24px; }
.st-service-features { display: flex; flex-direction: column; gap: 12px; }
.st-feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--green);
}
.st-feature-item.gold-border { border-left-color: var(--gold); }
.st-feature-dot { flex: 0 0 8px; height: 8px; background: var(--green); border-radius: 50%; margin-top: 6px; }
.st-feature-dot.gold { background: var(--gold); }
.st-feature-item span { font-size: 13px; line-height: 1.5; color: var(--text); font-weight: 500; }
.st-numbered-list { display: flex; flex-direction: column; gap: 16px; }
.st-numbered-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.st-num-badge {
  flex: 0 0 40px; height: 40px;
  background: var(--green-dark); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
}
.st-num-badge.gold-bg { background: var(--gold); color: var(--black); }
.st-numbered-item p { font-size: 14px; line-height: 1.6; padding-top: 8px; }

/* ─── GLOBAL PARTNER ─────────────────────────────────────────── */
.st-partners { background: var(--white); }
.st-partners-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.st-partner-logos { display: flex; flex-direction: column; gap: 16px; }
.st-partner-logo-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.st-partner-logo-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.st-partner-logo-icon {
  flex: 0 0 48px; height: 48px;
  border-radius: 8px;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.st-partner-logo-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.st-partner-logo-card p  { font-size: 12px; color: var(--gray); }
.st-partner-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.st-p-stat {
  padding: 24px;
  background: var(--gray-light);
  border-radius: var(--radius);
  text-align: center;
}
.st-p-stat-num { font-size: 36px; font-weight: 900; color: var(--green-dark); }
.st-p-stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ─── BRANDS MARQUEE ─────────────────────────────────────────── */
.st-brands { background: var(--cream); overflow: hidden; padding: 80px 0; }
.st-brands-header { text-align: center; margin-bottom: 48px; padding: 0 5%; }
.st-brands-quote { font-size: clamp(18px, 2.5vw, 28px); font-weight: 800; max-width: 800px; margin: 0 auto 8px; }
.st-marquee-wrapper { position: relative; }
.st-marquee-wrapper::before, .st-marquee-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.st-marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.st-marquee-wrapper::after  { right:0; background: linear-gradient(to left, var(--cream), transparent); }
.st-marquee { display: flex; gap: 16px; animation: marquee 30s linear infinite; width: max-content; }
.st-marquee:hover { animation-play-state: paused; }
.st-marquee-2 { animation-direction: reverse; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.st-brand-chip {
  flex: 0 0 auto;
  padding: 14px 28px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: var(--text);
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.st-brand-chip:hover { border-color: var(--green); color: var(--green); }

/* ─── LEISURE ─────────────────────────────────────────────────── */
.st-leisure { background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.st-leisure::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(135deg, rgba(27,107,58,0.4), rgba(45,134,83,0.2));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.st-leisure-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.st-leisure h2 { color: var(--white); margin-bottom: 24px; }
.st-leisure-quote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--gold-light); line-height: 1.5; margin-bottom: 24px;
}
.st-leisure p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 32px; }
.st-leisure-dests { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.st-dest-card {
  padding: 24px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.2s;
}
.st-dest-card:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }
.st-dest-icon { font-size: 32px; margin-bottom: 10px; }
.st-dest-card h4 { font-size: 14px!important; font-weight: 700!important; color: var(--white)!important; }

/* ─── GIFT SECTION ────────────────────────────────────────────── */
.st-gift { background: var(--gray-light); }
.st-gift-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.st-gift-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.st-gift-card {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 48px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.st-gift-card:hover { transform: scale(1.04) rotate(-1deg); }
.st-gift-card:nth-child(1) { background: linear-gradient(135deg, #1B6B3A, #4CAF74); }
.st-gift-card:nth-child(2) { background: linear-gradient(135deg, #C9A84C, #E8C96B); }
.st-gift-card:nth-child(3) { background: linear-gradient(135deg, #2D3748, #4A5568); }
.st-gift-card:nth-child(4) { background: linear-gradient(135deg, #9A7A30, #C9A84C); }
.st-gift-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; color: rgba(255,255,255,0.9); }

/* ─── CTA ─────────────────────────────────────────────────────── */
.st-cta {
  background: var(--green-dark);
  padding: 100px 5%;
  text-align: center;
  color: var(--white);
  position: relative; overflow: hidden;
}
.st-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.st-cta h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 800; color: var(--white); margin-bottom: 20px; position: relative; z-index: 1; }
.st-cta h2 span { color: var(--gold-light); }
.st-cta p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; position: relative; z-index: 1; }
.st-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.st-btn-white { background: var(--white); color: var(--green-dark); }
.st-btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.st-footer {
  background: var(--off-black);
  color: rgba(255,255,255,0.6);
  padding: 64px 5% 32px;
}
.st-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.st-footer-brand { display: flex; flex-direction: column; gap: 16px; }
.st-footer-brand svg { height: 44px; width: auto; }
.st-footer-brand p { font-size: 13px; line-height: 1.7; }
.st-footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.st-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.st-footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.st-footer-col ul li a:hover { color: var(--gold); }
.st-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
  gap: 16px;
}
.st-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.st-social-row { display: flex; gap: 12px; }
.st-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
  color: rgba(255,255,255,0.5);
}
.st-social-btn:hover { background: var(--gold); color: var(--black); }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.st-reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.st-reveal.visible { opacity: 1; transform: translateY(0); }
.st-reveal-left  { transform: translateX(-30px); }
.st-reveal-right { transform: translateX(30px); }
.st-reveal-left.visible, .st-reveal-right.visible { transform: translateX(0); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .st-mv-grid, .st-partners-inner, .st-leisure-inner, .st-gift-inner, .st-tab-panel.active {
    grid-template-columns: 1fr;
  }
  .st-stats-grid { grid-template-columns: 1fr 1fr; }
  .st-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .st-nav-links { display: none; }
  .st-nav-links.open { display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--off-black); padding: 24px; gap: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
  .st-hamburger { display: flex; }
  .st-stats-grid { grid-template-columns: 1fr; }
  .st-mv-grid { grid-template-columns: 1fr; }
  .st-footer-grid { grid-template-columns: 1fr; }
  .st-section { padding: 70px 5%; }
  .st-brands { padding: 60px 0; }
}