/* ============================================================
   GLOBAL NAV — silver floating card menu, all pages
   ============================================================ */

/* ─── NAV BAR ─────────────────────────────────────────────── */

.s-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px;
  pointer-events: none;
}
.s-nav > * { pointer-events: auto; }

.s-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #2c2c2a;
  text-decoration: none;
  transition: color 0.2s;
}
.s-brand:hover { color: #000; }

.s-menu-btn {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #4a4a48;
  background: rgba(205, 207, 203, 0.78);
  border: 1px solid rgba(190, 192, 188, 0.9);
  border-radius: 100px;
  padding: 9px 22px;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.s-menu-btn:hover {
  background: rgba(225, 227, 223, 0.95);
  color: #1a1a18;
}

/* ─── FLOATING MENU CARD ──────────────────────────────────── */

.s-menu-card {
  position: fixed;
  top: 68px;
  right: 32px;
  width: 268px;
  background: rgba(203, 206, 202, 0.96);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  border: 1px solid rgba(238, 240, 236, 0.72);
  border-radius: 22px;
  padding: 24px 30px 22px;
  box-shadow:
    0 12px 48px rgba(0,0,0,0.13),
    0 2px 8px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.55);
  z-index: 500;
  opacity: 0;
  transform: scale(0.94) translateY(-10px);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(0.22,1,0.36,1),
              transform 0.24s cubic-bezier(0.22,1,0.36,1);
}
.s-menu-card.is-open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* silver top rule */
.s-menu-card::before {
  content: '';
  display: block;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.7) 30%,
    rgba(210,212,208,0.5) 70%,
    transparent 100%
  );
}

/* nav links */
.s-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.s-menu-link {
  font-family: 'Inter', sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #3a3a38;
  text-decoration: none;
  line-height: 1.05;
  padding: 5px 0;
  transition: color 0.15s ease, letter-spacing 0.2s ease;
  display: block;
}
.s-menu-link:hover {
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* footer */
.s-menu-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.45);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.s-menu-email {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  color: #7a7a78;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.15s;
}
.s-menu-email:hover { color: #2c2c2a; }

.s-menu-social {
  display: flex;
  gap: 8px;
}

.s-menu-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(255,255,255,0.72);
  color: #4a4a48;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.s-menu-social a:hover {
  background: rgba(255,255,255,0.85);
  color: #1a1a18;
}

/* ─── STAR BRAND LOGO ─────────────────────────────────────── */

.s-brand--stars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  line-height: 1;
  text-decoration: none;
}
.s-brand--stars .star-a {
  font-family: serif;
  font-size: 28px;
  color: rgba(130, 135, 128, 0.92);
  transition: color 0.2s;
  line-height: 1;
}
.s-brand--stars .star-b {
  font-family: serif;
  font-size: 16px;
  color: rgba(130, 135, 128, 0.72);
  margin-bottom: 8px;
  transition: color 0.2s;
  line-height: 1;
}
.s-brand--stars .star-c {
  font-family: serif;
  font-size: 10px;
  color: rgba(130, 135, 128, 0.55);
  margin-bottom: 4px;
  transition: color 0.2s;
  line-height: 1;
}
.s-brand--stars:hover .star-a,
.s-brand--stars:hover .star-b,
.s-brand--stars:hover .star-c { color: rgba(80, 85, 80, 0.95); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 640px) {
  .s-nav { padding: 18px 20px; }
  .s-menu-card { right: 16px; width: calc(100vw - 32px); border-radius: 18px; }
  .s-menu-link { font-size: 28px; }
}
