/* ═══════════════════════════════════════════
   ROYAL AGROTECH CO. — SHARED STYLES
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --g: #D4A843;
  --gl: #EDD07E;
  --gd: #9B7418;
  --dk: #0A0804;
  --d2: #161109;
  --d3: #1E1710;
  --cr: #FDF8EE;
  --tx: #EDE3CC;
  --mt: #A8966F;
  --br: rgba(212,168,67,0.22);
  --nh: 80px;
}

html { scroll-behavior: smooth; }
body { background: var(--dk); color: var(--tx); font-family: 'Jost', sans-serif; overflow-x: hidden; background-image: radial-gradient(ellipse 80% 60% at 15% 0%, rgba(212,168,67,0.055) 0%, transparent 55%), radial-gradient(ellipse 60% 50% at 85% 100%, rgba(212,168,67,0.04) 0%, transparent 55%); background-attachment: fixed; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--d2); }
::-webkit-scrollbar-thumb { background: var(--g); border-radius: 2px; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nh); display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(10,8,4,0.4);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--br);
  transition: box-shadow .3s;
}
nav.sc { box-shadow: 0 4px 40px rgba(0,0,0,.5); }

.nl img { height: 52px; width: auto; cursor: pointer; transition: opacity .2s; }
.nl img:hover { opacity: .85; }

.nls { display: flex; align-items: center; gap: 2px; }
.nls > a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mt); text-decoration: none; padding: 8px 14px; border-radius: 100px;
  transition: color .25s; font-weight: 500;
}
.nls > a:hover, .nls > a.ac { color: var(--g); }

/* ── DROPDOWN — STICKY FIX ── */
.nd {
  position: relative;
  /* Extend hover area downward to cover gap between trigger and dropdown */
  padding-bottom: 20px;
  margin-bottom: -20px;
}
.nd-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mt); text-decoration: none; padding: 8px 14px; border-radius: 100px;
  transition: color .25s; font-weight: 500; cursor: pointer;
}
.nd-trigger:hover, .nd-trigger.ac { color: var(--g); }
.nd-arrow {
  font-size: 8px; transition: transform .28s, color .25s;
  display: inline-block; line-height: 1;
}

#nav-logo:hover{
    box-shadow: 0px 0px 30px #c9a84c;
    border-radius: 100%;        
}
#footer-logo:hover{
    box-shadow: 0px 0px 30px #c9a84c;
    border-radius: 100%;        
}
#mob-logo:hover{
    box-shadow: 0px 0px 30px #c9a84c;
    border-radius: 100%;        
}

.dd {
  position: absolute; top: calc(100% - 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--d2);
  border: 1px solid var(--br);
  border-radius: 18px;
  min-width: 290px;
  padding: 10px 8px;
  /* Hidden by default */
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  box-shadow: 0 24px 60px rgba(0,0,0,.65), 0 0 0 1px rgba(212,168,67,.08);
  z-index: 999;
}
/* Open state — triggered by JS */
.dd.open {
  opacity: 1; pointer-events: all; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dd a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 10px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--mt); text-decoration: none; font-weight: 500;
  transition: all .2s;
}
.dd a:hover { background: rgba(212,168,67,.08); color: var(--g); }
.dd a .di { font-size: 17px; width: 24px; text-align: center; flex-shrink: 0; }
.dd-all { color: var(--g) !important; }
.dd-divider { height: 1px; background: var(--br); margin: 5px 6px; }

/* NAV CTA */
.nc {
  background: transparent; border: 1px solid var(--g); color: var(--g);
  padding: 10px 24px; border-radius: 100px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer; transition: all .3s;
  font-family: 'Jost', sans-serif; font-weight: 600; text-decoration: none;
  white-space: nowrap;
}
.nc:hover { background: var(--g); color: var(--dk); }

/* Hamburger */
.hb { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hl { width: 24px; height: 1.5px; background: var(--g); transition: all .3s; }
.hb.op .hl:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hb.op .hl:nth-child(2) { opacity: 0; }
.hb.op .hl:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mm {
  position: fixed; top: var(--nh); left: 0; right: 0; bottom: 0; z-index: 850;
  background: rgba(13,10,6,.98); backdrop-filter: blur(30px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.77,0,.18,1);
}
.mm.op { transform: none; }
.mm a {
  font-size: 28px; font-family: 'Cormorant Garamond', serif;
  color: var(--tx); text-decoration: none; letter-spacing: 2px; transition: color .2s;
}
.mm a:hover { color: var(--g); }

/* ══════════════════════════════
   BREADCRUMB SECTION
══════════════════════════════ */
.bc-section {
  position: relative;
  height: 260px;
  display: flex; align-items: center;
  overflow: hidden;
  margin-top: var(--nh);
}

/* Background image layer */
.bc-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0.6;
  transform: scale(1.04);
  filter: brightness(0.55) saturate(1.1);
}

/* Dark gradient overlay on top of image */
.bc-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,10,6,.55) 0%, rgba(13,10,6,.35) 50%, rgba(13,10,6,.65) 100%),
    linear-gradient(90deg, rgba(13,10,6,.6) 0%, transparent 60%);
}

/* Gold accent line left edge */
.bc-section::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--g), transparent);
  z-index: 3;
}

.bc-inner {
  position: relative; z-index: 2;
  max-width: 1380px; width: 100%;
  margin: 0 auto;
  padding: 0 56px;
}

.bc-trail {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.bc-link {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(212,168,67,.7); text-decoration: none; font-weight: 500;
  transition: color .2s;
}
.bc-link:hover { color: var(--g); }
.bc-sep {
  color: rgba(212,168,67,.35); font-size: 14px; line-height: 1;
}
.bc-cur {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--g); font-weight: 600;
}

.bc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--cr);
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.bc-title em { color: var(--g); font-style: italic; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.bg { background: var(--g); color: var(--dk); border: none; cursor: pointer;
  padding: 14px 36px; border-radius: 100px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; font-family: 'Jost', sans-serif;
  transition: all .3s; box-shadow: 0 8px 30px rgba(212,168,67,.35), 0 0 0 1px rgba(212,168,67,.15);
  text-decoration: none; display: inline-block;
}
.bg:hover { background: var(--gl); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(212,168,67,.5), 0 0 20px rgba(212,168,67,.2); }
.bo {
  background: transparent; color: var(--g); border: 1px solid rgba(212,168,67,.6); cursor: pointer;
  padding: 14px 36px; border-radius: 100px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; font-family: 'Jost', sans-serif;
  transition: all .3s; text-decoration: none; display: inline-block;
}
.bo:hover { border-color: var(--g); background: rgba(212,168,67,.1); transform: translateY(-2px); box-shadow: 0 0 20px rgba(212,168,67,.15); }

/* ══════════════════════════════
   LABELS & TYPE
══════════════════════════════ */
.sl2 {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--g); font-weight: 600; margin-bottom: 10px;
}
.sl2::before { content: ''; width: 28px; height: 1px; background: var(--g); }
.st { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px,4vw,58px); color: var(--cr); line-height: 1.1; margin-bottom: 14px; }
.st em { color: var(--g); font-style: italic; }
.ssb { font-size: 14px; color: var(--mt); line-height: 1.9; max-width: 500px; font-weight: 300; }

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.mw { overflow: hidden; padding: 15px 0; background: linear-gradient(90deg,var(--d3),rgba(212,168,67,.1),var(--d3)); border-top: 1px solid var(--br); border-bottom: 1px solid var(--br); }
.mt { display: flex; width: max-content; animation: mq 38s linear infinite; }
.mi { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 4px; color: rgba(212,168,67,.7); text-transform: uppercase; padding: 0 28px; display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.mi::after { content: '✦'; font-size: 6px; color: rgba(212,168,67,.45); }
@keyframes mq { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer { background: var(--d2); border-top: 1px solid var(--br); padding: 56px 56px 36px; text-align: center; }
.fli img { height: 60px; width: auto; margin-bottom: 18px; }
.ftg { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px; color: rgba(212,168,67,.4); text-transform: uppercase; margin-bottom: 28px; }
.fls { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.fls a { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mt); text-decoration: none; transition: color .2s; }
.fls a:hover { color: var(--g); }
.fdv { width: 50px; height: 1px; background: var(--br); margin: 0 auto 20px; }
.fc2 { font-size: 11px; color: rgba(154,138,114,.5); }

/* ══════════════════════════════
   REVEAL ANIMATION
══════════════════════════════ */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.rv.vs { opacity: 1; transform: none; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media(max-width: 1024px) {
  nav { padding: 0 32px; }
  .bc-inner { padding: 0 32px; }
}
@media(max-width: 768px) {
  nav { padding: 0 20px; }
  .nls, .nc { display: none !important; }
  .hb { display: flex; }
  footer { padding: 40px 20px 28px; }
  .bc-section { height: 200px; }
  .bc-inner { padding: 0 20px; }
  .bc-title { font-size: 32px; }
}

/* ══════════════════════════════
   MOBILE MENU — UPDATED
══════════════════════════════ */
.mm {
  position: fixed; top: var(--nh); left: 0; right: 0; bottom: 0; z-index: 850;
  background: var(--dk);
  display: flex; flex-direction: column; align-items: stretch;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
  padding: 0 0 40px;
}
.mm.op { transform: none; }

.mm-logo {
  display: flex; justify-content: center; align-items: center;
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--br);
  margin-bottom: 8px;
}
.mm-logo img { height: 46px; width: auto; }

.mm > a {
  font-size: 16px; font-family: 'Cormorant Garamond', serif;
  color: var(--tx); text-decoration: none; letter-spacing: 1.5px;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(212,168,67,.07);
  transition: color .2s, background .2s;
  display: flex; align-items: center;
}
.mm > a:hover { color: var(--g); background: rgba(212,168,67,.04); }

/* Accordion trigger */
.mm-acc { border-bottom: 1px solid rgba(212,168,67,.07); }
.mm-acc-trigger {
  font-size: 16px; font-family: 'Cormorant Garamond', serif;
  color: var(--tx); letter-spacing: 1.5px;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; transition: color .2s, background .2s;
  user-select: none;
}
.mm-acc-trigger:hover { color: var(--g); background: rgba(212,168,67,.04); }
.mm-acc-arrow {
  font-size: 20px; color: var(--g); opacity: .7;
  transition: transform .3s; display: inline-block;
}

/* Accordion body */
.mm-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.25,.46,.45,.94);
  background: var(--d2);
}
.mm-acc-body.open { max-height: 500px; }

.mm-acc-body a {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--mt); text-decoration: none; font-weight: 500;
  padding: 14px 28px 14px 36px;
  border-bottom: 1px solid rgba(212,168,67,.06);
  transition: color .2s, background .2s;
}
.mm-acc-body a span:first-child { font-size: 18px; flex-shrink: 0; }
.mm-acc-body a:hover { color: var(--g); background: rgba(212,168,67,.06); }
.mm-view-all { color: var(--g) !important; font-weight: 700 !important; }

/* CTA at bottom */
.mm-cta {
  margin: 20px 28px 0 !important;
  background: var(--g); color: var(--dk) !important;
  border-radius: 100px !important; padding: 14px 28px !important;
  font-size: 12px !important; letter-spacing: 2px !important;
  text-transform: uppercase !important; font-weight: 700 !important;
  font-family: 'Jost', sans-serif !important;
  justify-content: center !important;
  border-bottom: none !important;
}
.mm-cta:hover { background: var(--gl) !important; color: var(--dk) !important; }

/* ══════════════════════════════
   WHATSAPP POPUP
══════════════════════════════ */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
  border: none;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }

/* Pulse ring */
.wa-fab::before {
  content: '';
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: waPulse 2.5s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Tooltip on hover */
.wa-fab-tip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--d2); border: 1px solid var(--br);
  border-radius: 10px; padding: 8px 14px; white-space: nowrap;
  font-size: 12px; color: var(--cr); font-family: 'Jost', sans-serif;
  opacity: 0; pointer-events: none; transition: opacity .25s;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.wa-fab-tip::after {
  content: '';
  position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--d2);
  border-right: none;
}
.wa-fab:hover .wa-fab-tip { opacity: 1; }

/* WhatsApp popup panel */
.wa-popup {
  position: fixed; bottom: 100px; right: 28px; z-index: 799;
  width: 320px; background: var(--d2);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  transform: translateY(20px) scale(.95);
  opacity: 0; pointer-events: none;
  transition: all .35s cubic-bezier(.25,.46,.45,.94);
}
.wa-popup.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }

.wa-popup-head {
  background: #128C7E;
  padding: 18px 20px; display: flex; align-items: center; gap: 14px;
}
.wa-popup-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden; border: 2px solid rgba(255,255,255,.3);
}
.wa-popup-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-popup-name { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.2; }
.wa-popup-status { font-size: 11px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.wa-online-dot { width: 6px; height: 6px; border-radius: 50%; background: #64ED8A; display: inline-block; animation: waPulse2 2s infinite; }
@keyframes waPulse2 { 0%,100%{opacity:1} 50%{opacity:.4} }
.wa-popup-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; font-size: 18px; line-height: 1; padding: 4px; transition: color .2s; }
.wa-popup-close:hover { color: #fff; }

.wa-popup-body { padding: 20px; }
.wa-chat-bubble {
  background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.15);
  border-radius: 14px 14px 14px 4px;
  padding: 14px 16px; margin-bottom: 16px;
  font-size: 13px; color: var(--tx); line-height: 1.7; font-family: 'Jost', sans-serif;
}
.wa-chat-time { font-size: 10px; color: var(--mt); margin-top: 6px; text-align: right; }

.wa-quick-title { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mt); margin-bottom: 10px; font-weight: 600; }
.wa-quick-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.wa-quick-btn {
  padding: 7px 14px; border: 1px solid rgba(37,211,102,.25);
  border-radius: 100px; font-size: 11px; color: #25D366;
  background: rgba(37,211,102,.06); cursor: pointer;
  font-family: 'Jost', sans-serif; font-weight: 500;
  transition: all .2s; white-space: nowrap;
}
.wa-quick-btn:hover { background: rgba(37,211,102,.14); border-color: rgba(37,211,102,.5); }

.wa-start-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px; background: #25D366;
  color: #fff; border: none; border-radius: 12px;
  font-size: 13px; font-weight: 700; font-family: 'Jost', sans-serif;
  cursor: pointer; text-decoration: none;
  transition: background .2s, transform .2s;
  letter-spacing: .5px;
}
.wa-start-btn:hover { background: #20BD5A; transform: translateY(-1px); }
.wa-start-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* ══════════════════════════════
   ORBITAL SPICE ANIMATION (About Page)
   Key technique: zero-size spinner at scene center,
   each item uses rotate(Adeg) translateY(-radius)
   which places items on a perfect circle, no overlap.
   Counter-spin animation on img keeps them upright.
══════════════════════════════ */

.orbit-scene {
  position: relative;
  width: 460px; height: 460px;
  margin: 0 auto;
  flex-shrink: 0;
}

/* Decorative rings — centered absolutely */
.orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(212,168,67,.14);
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring-1 { width: 440px; height: 440px; }
.orbit-ring-2 { width: 376px; height: 376px; border-color: rgba(212,168,67,.08); }
.orbit-ring-3 { width: 314px; height: 314px; border-color: rgba(212,168,67,.06); border-style: dashed; animation: ringPulse 4s ease-in-out infinite; }
@keyframes ringPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── THE SPINNER — zero-size anchor at exact center ── */
.orbit-spinner {
  position: absolute;
  /* Place at exact center of scene */
  top: 50%; left: 50%;
  width: 0; height: 0;
  /* No margin needed — 0 size, already at center */
  animation: spinCW 28s linear infinite;
  transform-origin: 0 0; /* rotate around itself (center point) */
}

/* Each orbit item */
.orbit-item {
  position: absolute;
  width: 80px; height: 80px;
  /* Center the item ON the spinner center point */
  top: -40px; left: -40px;
  transform-origin: 40px 40px; /* center of the item = center of spinner */
  /* JS sets: transform: rotate(Adeg) translateY(-radius) */
}

.orbit-item img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: var(--d3);
  border: 2.5px solid rgba(212,168,67,.38);
  box-shadow: 0 6px 20px rgba(0,0,0,.6), 0 0 0 3px rgba(13,10,6,.9);
  padding: 7px;
  display: block;
  cursor: pointer;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.orbit-item img:hover {
  border-color: var(--g);
  box-shadow: 0 8px 28px rgba(212,168,67,.45), 0 0 0 3px rgba(212,168,67,.25);
}

/* ── KEYFRAMES ── */
@keyframes spinCW  { from{transform:rotate(0deg)}   to{transform:rotate(360deg)} }
@keyframes spinCCW { from{transform:rotate(0deg)}   to{transform:rotate(-360deg)} }

/* Center logo */
.orbit-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--d3), var(--dk));
  border: 2px solid rgba(212,168,67,.25);
  box-shadow:
    0 0 0 8px rgba(13,10,6,.95),
    0 0 0 11px rgba(212,168,67,.12),
    0 20px 60px rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.orbit-center img {
  width: 110px; height: auto;
  filter: drop-shadow(0 3px 10px rgba(212,168,67,.3));
}
.orbit-center::before {
  content:''; position:absolute; inset:-20px; border-radius:50%;
  background: radial-gradient(circle, rgba(212,168,67,.1) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.08)} }

/* Gold badge */
.orbit-badge {
  position: absolute; bottom: 6px; right: 6px; z-index: 20;
  background: var(--g); border-radius: 14px; padding: 14px 20px;
  box-shadow: 0 12px 36px rgba(212,168,67,.35); text-align: center;
}
.orbit-badge-n { font-family:'Cormorant Garamond',serif; font-size:34px; color:var(--dk); font-weight:700; line-height:1; }
.orbit-badge-l { font-size:9px; letter-spacing:2px; text-transform:uppercase; color:rgba(13,10,6,.6); margin-top:2px; }

/* ── RESPONSIVE ORBIT ── */
@media(max-width:1200px) {
  .orbit-scene { width:400px; height:400px; }
  .orbit-ring-1 { width:382px; height:382px; }
  .orbit-ring-2 { width:322px; height:322px; }
  .orbit-ring-3 { width:262px; height:262px; }
}
@media(max-width:1024px) {
  .orbit-scene { width:360px; height:360px; }
  .orbit-ring-1 { width:342px; height:342px; }
  .orbit-ring-2 { width:286px; height:286px; }
  .orbit-ring-3 { width:230px; height:230px; }
  .orbit-item { width:68px; height:68px; top:-34px; left:-34px; }
  .orbit-item { transform-origin: 34px 34px; }
  .orbit-center { width:128px; height:128px; }
  .orbit-center img { width:95px; }
}
@media(max-width:768px) {
  .orbit-scene { width:300px; height:300px; margin-bottom:48px; }
  .orbit-ring-1 { width:284px; height:284px; }
  .orbit-ring-2 { width:236px; height:236px; }
  .orbit-ring-3 { width:190px; height:190px; }
  .orbit-item { width:58px; height:58px; top:-29px; left:-29px; transform-origin:29px 29px; }
  .orbit-item img { padding:5px; }
  .orbit-center { width:108px; height:108px; }
  .orbit-center img { width:80px; }
  .orbit-badge { padding:10px 15px; }
  .orbit-badge-n { font-size:26px; }
}
@media(max-width:480px) {
  .orbit-scene { width:260px; height:260px; }
  .orbit-ring-1 { width:244px; height:244px; }
  .orbit-ring-2 { width:200px; height:200px; }
  .orbit-ring-3 { width:158px; height:158px; }
  .orbit-item { width:50px; height:50px; top:-25px; left:-25px; transform-origin:25px 25px; }
  .orbit-item img { padding:4px; }
  .orbit-center { width:90px; height:90px; }
  .orbit-center img { width:66px; }
}
