/* mini-videos.css — animated service explainers (pure CSS loops, no JS) */

.mv {
  background: linear-gradient(135deg, var(--cream-3), var(--cream));
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 60px rgba(40,30,10,0.10), 0 4px 12px rgba(40,30,10,0.05);
  min-height: 520px;
}
.mv-stage {
  flex: 1; position: relative;
  min-height: 340px;
  overflow: hidden;
}
.mv-caption {
  padding: 18px 24px 22px;
  border-top: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.mv-headline {
  font-family: var(--serif); font-style: italic;
  font-size: 26px; color: var(--ink); line-height: 1.15;
  letter-spacing: -0.005em;
}
.mv-headline em { font-style: normal; color: var(--gold-dk); }
.mv-savings {
  font-size: 13px; color: var(--ink-3); margin-top: 6px;
  font-weight: 500; letter-spacing: 0.01em;
}
.mv-savings strong { color: var(--green); font-weight: 700; }
.mv-tape {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(27,24,20,0.85); color: var(--cream-3);
  padding: 4px 10px 4px 8px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 10;
}
.mv-tape::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: mvBlink 1.4s infinite;
}
@keyframes mvBlink { 50% { opacity: 0.25; } }

/* ────────────────────────────────────────────────────────────────────────
   1) SEO + AEO — spiderweb of organic leads
   ──────────────────────────────────────────────────────────────────────── */
.mv-seo .mv-stage {
  background: radial-gradient(circle at 50% 55%, var(--gold-bg) 0%, var(--cream-3) 60%);
}
.mv-seo .web-core {
  position: absolute; left: 50%; top: 55%;
  width: 96px; height: 96px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-3);
  font-family: var(--serif); font-style: italic;
  font-size: 22px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.3);
  z-index: 5;
}
.mv-seo .web-core::after {
  content: ""; position: absolute; inset: -10px;
  border: 2px solid var(--gold);
  border-radius: 22px;
  animation: webPulse 2.6s infinite ease-out;
}
@keyframes webPulse {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.5); }
}
.mv-seo .web-thread {
  position: absolute; left: 50%; top: 55%;
  transform-origin: left center;
  width: 50%; height: 2px;
  background: linear-gradient(to right, var(--gold-dk), transparent);
  border-radius: 2px;
  opacity: 0;
  animation: threadGrow 7s infinite ease-out;
}
@keyframes threadGrow {
  0%, 100% { opacity: 0; transform: rotate(var(--a)) scaleX(0); }
  20%      { opacity: 0.8; transform: rotate(var(--a)) scaleX(1); }
  80%      { opacity: 0.8; transform: rotate(var(--a)) scaleX(1); }
}
.mv-seo .web-lead {
  position: absolute;
  background: #fff;
  border: 1px solid var(--gold-soft);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 11px; font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(40,30,10,0.10);
  opacity: 0;
  animation: leadAppear 7s infinite;
}
.mv-seo .web-lead::before {
  content: "→"; color: var(--gold-dk); margin-right: 4px;
}
@keyframes leadAppear {
  0%, 100% { opacity: 0; transform: scale(0.6) translate(var(--tx,0), var(--ty,0)); }
  25%      { opacity: 1; transform: scale(1) translate(0, 0); }
  85%      { opacity: 1; transform: scale(1) translate(0, 0); }
}
.mv-seo .web-counter {
  position: absolute; bottom: 18px; right: 18px;
  background: rgba(27,24,20,0.92);
  color: var(--cream-3);
  padding: 10px 14px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.1;
  z-index: 8;
}
.mv-seo .web-counter .num {
  font-family: var(--serif); font-style: italic;
  font-size: 26px; color: var(--gold);
  display: block; letter-spacing: 0;
  text-transform: none;
}

/* ────────────────────────────────────────────────────────────────────────
   2) CRM — chaos → order (scattered cards snap into a grid)
   ──────────────────────────────────────────────────────────────────────── */
.mv-crm .mv-stage {
  background: var(--cream-2);
  padding: 32px;
}
.mv-crm .crm-card-fly {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 11.5px;
  width: 130px;
  box-shadow: 0 8px 18px rgba(40,30,10,0.06);
  display: flex; flex-direction: column; gap: 3px;
  animation: cardSnap 6s infinite ease-out;
}
.mv-crm .crm-card-fly .who { font-weight: 700; color: var(--ink); font-size: 12px; }
.mv-crm .crm-card-fly .time { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--gold-dk); }
.mv-crm .crm-card-fly .addr { color: var(--ink-3); font-size: 10.5px; }

@keyframes cardSnap {
  0%   { transform: translate(var(--fx), var(--fy)) rotate(var(--fr)); opacity: 0.3; }
  15%  { opacity: 1; }
  35%  { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  85%  { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--fx), var(--fy)) rotate(var(--fr)); opacity: 0.3; }
}

/* ────────────────────────────────────────────────────────────────────────
   3) Ads + Funnel — $30 drops, customers stack
   ──────────────────────────────────────────────────────────────────────── */
.mv-ads .mv-stage {
  background: linear-gradient(180deg, var(--cream-3) 0%, var(--gold-bg) 100%);
  padding: 30px 50px;
  display: flex; flex-direction: column; align-items: center;
}
.mv-ads .funnel-shape {
  position: relative;
  width: 100%; max-width: 280px;
  height: 220px;
  margin-top: 8px;
}
.mv-ads .funnel-band {
  position: absolute;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--gold-soft);
  border-radius: 10px;
  font-size: 11px; font-weight: 700;
  color: var(--ink-2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px;
  height: 38px;
  letter-spacing: 0.02em;
}
.mv-ads .funnel-band em {
  font-family: var(--serif); font-style: italic;
  color: var(--gold-dk); font-size: 16px;
}
.mv-ads .funnel-band.b1 { width: 100%; top: 0; }
.mv-ads .funnel-band.b2 { width: 80%; top: 50px; left: 10%; }
.mv-ads .funnel-band.b3 { width: 60%; top: 100px; left: 20%; }
.mv-ads .funnel-band.b4 {
  width: 42%; top: 150px; left: 29%;
  background: var(--ink); color: var(--cream-3);
  border-color: var(--ink);
}
.mv-ads .funnel-band.b4 em { color: var(--gold); }

.mv-ads .coin {
  position: absolute; top: -36px; left: 50%;
  width: 26px; height: 26px;
  background: linear-gradient(140deg, var(--gold), var(--gold-dk));
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--ink);
  box-shadow: 0 6px 14px rgba(167,131,49,0.4);
  transform: translate(-50%, 0);
  animation: coinDrop 3s infinite ease-in;
}
@keyframes coinDrop {
  0%   { transform: translate(-50%, -10px) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  80%  { transform: translate(-50%, 170px) scale(0.6); opacity: 0; }
  100% { transform: translate(-50%, 170px) scale(0.6); opacity: 0; }
}

.mv-ads .client-pop {
  position: absolute; bottom: -22px; left: 50%;
  transform: translate(-50%, 0);
  background: var(--green); color: #fff;
  font-size: 10.5px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: clientPop 3s infinite;
}
@keyframes clientPop {
  0%, 70% { opacity: 0; transform: translate(-50%, 10px) scale(0.7); }
  85% { opacity: 1; transform: translate(-50%, 0) scale(1.1); }
  95% { opacity: 1; transform: translate(-50%, 0) scale(1); }
  100% { opacity: 0; }
}

/* ────────────────────────────────────────────────────────────────────────
   4) Social Autopilot — founder voice → posts to all platforms
   ──────────────────────────────────────────────────────────────────────── */
.mv-social .mv-stage {
  background: var(--cream-3);
  padding: 36px;
  display: flex; align-items: center; justify-content: center;
}
.mv-social .founder {
  position: relative;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold), var(--gold-dk));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; color: var(--ink);
  font-size: 38px;
  z-index: 5;
  box-shadow: 0 14px 32px rgba(167,131,49,0.35);
}
.mv-social .founder::after {
  content: "";
  position: absolute; inset: -8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: webPulse 2.6s infinite ease-out;
}
.mv-social .platform {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px;
  box-shadow: 0 8px 18px rgba(40,30,10,0.15);
  z-index: 4;
}
.mv-social .platform.ig { background: linear-gradient(135deg, #F5A300, #E2336B, #8E33D0); top: 18%; right: 10%; }
.mv-social .platform.fb { background: #1877F2; bottom: 18%; right: 14%; }
.mv-social .platform.tt { background: var(--ink); top: 50%; right: 4%; transform: translateY(-50%); }
.mv-social .platform.li { background: #0A66C2; bottom: 18%; left: 14%; }
.mv-social .platform.x  { background: var(--ink); top: 18%; left: 10%; }

.mv-social .post {
  position: absolute; left: 50%; top: 50%;
  width: 38px; height: 28px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(40,30,10,0.10);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 3;
}
.mv-social .post::before, .mv-social .post::after {
  content: ""; position: absolute; left: 5px; height: 2px;
  background: var(--ink-4); border-radius: 2px;
}
.mv-social .post::before { top: 7px; width: 60%; }
.mv-social .post::after  { top: 13px; width: 40%; }
.mv-social .post.p1 { animation: flyToIg 4s infinite; }
.mv-social .post.p2 { animation: flyToFb 4s infinite 0.5s; }
.mv-social .post.p3 { animation: flyToTt 4s infinite 1.0s; }
.mv-social .post.p4 { animation: flyToLi 4s infinite 1.5s; }
.mv-social .post.p5 { animation: flyToX 4s infinite 2.0s; }

@keyframes flyToIg {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  10%      { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  85%      { opacity: 0; transform: translate(140px, -90px) scale(0.5); }
}
@keyframes flyToFb {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  10%      { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  85%      { opacity: 0; transform: translate(120px, 80px) scale(0.5); }
}
@keyframes flyToTt {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  10%      { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  85%      { opacity: 0; transform: translate(170px, 0) scale(0.5); }
}
@keyframes flyToLi {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  10%      { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  85%      { opacity: 0; transform: translate(-140px, 80px) scale(0.5); }
}
@keyframes flyToX {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  10%      { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  85%      { opacity: 0; transform: translate(-130px, -90px) scale(0.5); }
}

/* ────────────────────────────────────────────────────────────────────────
   5) AI Receptionist — clock spins, calls land, tags appear
   ──────────────────────────────────────────────────────────────────────── */
.mv-recep .mv-stage {
  background: linear-gradient(135deg, var(--ink) 0%, #2A2620 100%);
  padding: 32px;
  color: var(--cream-3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
}
.mv-recep .clock-face {
  position: relative;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.mv-recep .clock-face::before {
  content: ""; position: absolute; inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.mv-recep .clock-hand {
  position: absolute; left: 50%; top: 50%;
  width: 2px; height: 46px;
  background: var(--gold);
  transform-origin: 50% 100%;
  transform: translate(-50%, -100%) rotate(0deg);
  border-radius: 2px;
  animation: clockSpin 5s linear infinite;
}
@keyframes clockSpin { to { transform: translate(-50%, -100%) rotate(360deg); } }
.mv-recep .clock-time {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--gold-soft);
  position: relative; z-index: 2;
}
.mv-recep .clock-label {
  position: absolute; bottom: -22px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.mv-recep .call-tags {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-top: 16px;
}
.mv-recep .call-tag {
  font-size: 11px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: tagPop 5s infinite;
}
.mv-recep .call-tag.hot   { background: var(--red-bg); color: var(--red); animation-delay: 0.4s; }
.mv-recep .call-tag.cust  { background: var(--green-bg); color: var(--green); animation-delay: 1.6s; }
.mv-recep .call-tag.spam  { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); animation-delay: 2.8s; }
.mv-recep .call-tag.book  { background: var(--gold-bg); color: var(--gold-dk); animation-delay: 4.0s; }
@keyframes tagPop {
  0%, 18%, 100% { opacity: 0; transform: scale(0.6) translateY(8px); }
  4%            { opacity: 1; transform: scale(1) translateY(0); }
  16%           { opacity: 1; transform: scale(1) translateY(0); }
}
.mv-recep .ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: ringOut 5s infinite;
}
@keyframes ringOut {
  0%, 30%, 100% { opacity: 0; transform: scale(1); }
  10% { opacity: 0.8; transform: scale(1); }
  25% { opacity: 0; transform: scale(1.5); }
}

/* ────────────────────────────────────────────────────────────────────────
   6) Comms Center — channels merge into one inbox, daily brief
   ──────────────────────────────────────────────────────────────────────── */
.mv-comms .mv-stage {
  background: var(--cream-3);
  padding: 28px 36px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 18px; align-items: center;
}
.mv-comms .channels {
  display: flex; flex-direction: column; gap: 10px;
}
.mv-comms .channel {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px;
  font-size: 11.5px; font-weight: 600; color: var(--ink);
  position: relative;
}
.mv-comms .channel-icon {
  width: 20px; height: 20px; border-radius: 5px;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: #fff;
}
.mv-comms .channel-icon.gm { background: #1976D2; }
.mv-comms .channel-icon.sl { background: #4A154B; }
.mv-comms .channel-icon.sm { background: var(--green); }
.mv-comms .channel-icon.wa { background: #25D366; }

.mv-comms .pulse-line {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  background-size: 30% 100%;
  background-repeat: no-repeat;
  background-position: -30% 0;
  animation: pulseRight 2s infinite linear;
  border-radius: 2px;
}
@keyframes pulseRight {
  to { background-position: 130% 0; }
}

.mv-comms .inbox {
  width: 200px;
  background: var(--ink); color: var(--cream-3);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}
.mv-comms .inbox-title {
  font-family: var(--serif); font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--gold-soft);
}
.mv-comms .inbox-line {
  font-size: 10.5px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  color: rgba(250, 246, 236, 0.7);
  opacity: 0;
  animation: lineIn 6s infinite;
}
.mv-comms .inbox-line:nth-child(2) { animation-delay: 0.3s; }
.mv-comms .inbox-line:nth-child(3) { animation-delay: 0.6s; }
.mv-comms .inbox-line:nth-child(4) { animation-delay: 0.9s; }
.mv-comms .inbox-line:nth-child(5) { animation-delay: 1.2s; }
.mv-comms .inbox-line strong { color: var(--cream-3); font-weight: 600; }
.mv-comms .inbox-line .badge-spam {
  background: rgba(255,255,255,0.08);
  color: var(--ink-4);
  padding: 1px 6px; border-radius: 999px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.04em;
}
@keyframes lineIn {
  0%, 85%, 100% { opacity: 0; transform: translateY(-6px); }
  18%, 80% { opacity: 1; transform: translateY(0); }
}
.mv-comms .inbox-summary {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 10.5px;
  background: var(--gold-bg); color: var(--ink);
  padding: 8px 10px; border-radius: 7px;
  line-height: 1.4;
}
.mv-comms .inbox-summary strong { color: var(--gold-dk); }

/* ────────────────────────────────────────────────────────────────────────
   7) Employee App — efficiency bars rise
   ──────────────────────────────────────────────────────────────────────── */
.mv-app .mv-stage {
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  padding: 30px;
  display: grid; grid-template-columns: 1fr 200px; gap: 24px;
  align-items: center;
}
.mv-app .crew-board { display: flex; flex-direction: column; gap: 10px; }
.mv-app .crew-row {
  display: grid; grid-template-columns: 28px 1fr 36px;
  gap: 10px; align-items: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px;
  font-size: 11.5px;
}
.mv-app .crew-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold), var(--gold-dk));
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-size: 13px;
}
.mv-app .crew-name { font-weight: 600; color: var(--ink); font-size: 12px; }
.mv-app .crew-bar-track {
  height: 5px; background: var(--cream-2);
  border-radius: 4px; overflow: hidden; margin-top: 3px;
}
.mv-app .crew-bar-fill {
  height: 100%; background: linear-gradient(to right, var(--gold), var(--gold-dk));
  border-radius: 4px;
  animation: barFill 5s infinite ease-out;
  transform-origin: left;
}
.mv-app .crew-row:nth-child(1) .crew-bar-fill { animation-delay: 0s; --w: 88%; }
.mv-app .crew-row:nth-child(2) .crew-bar-fill { animation-delay: 0.2s; --w: 72%; }
.mv-app .crew-row:nth-child(3) .crew-bar-fill { animation-delay: 0.4s; --w: 94%; }
.mv-app .crew-row:nth-child(4) .crew-bar-fill { animation-delay: 0.6s; --w: 65%; }

@keyframes barFill {
  0%, 100% { width: 0; }
  20%, 80% { width: var(--w, 80%); }
}
.mv-app .crew-pct {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--gold-dk);
  text-align: right;
}
.mv-app .mini-phone {
  width: 180px;
  background: var(--ink);
  border-radius: 22px;
  padding: 6px;
  position: relative;
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}
.mv-app .mini-phone-screen {
  background: var(--cream-3);
  border-radius: 16px;
  padding: 14px 12px;
  min-height: 220px;
  display: flex; flex-direction: column; gap: 8px;
}
.mv-app .mp-title {
  font-family: var(--serif); font-style: italic;
  font-size: 14px;
}
.mv-app .mp-stat {
  background: #fff; border: 1px solid var(--border);
  border-radius: 9px; padding: 8px 10px;
}
.mv-app .mp-stat .l { font-size: 9.5px; font-weight: 700; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.mv-app .mp-stat .v {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--ink);
  display: inline-block;
}
.mv-app .mp-stat .delta { font-size: 10px; color: var(--green); font-weight: 700; margin-left: 6px; }
.mv-app .mp-stat .v {
  animation: countUp 5s infinite ease-out;
}
@keyframes countUp {
  0%   { transform: translateY(8px); opacity: 0; }
  20%, 80% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-8px); opacity: 0; }
}

/* ──────────────────────────────────────────────────────────────────────── */
/* SEO mini-video savings ribbon (added inside existing browser mock)        */
/* ──────────────────────────────────────────────────────────────────────── */
.seo-ribbon {
  background: var(--ink);
  color: var(--cream-3);
  padding: 14px 22px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.seo-ribbon .left {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; line-height: 1.15;
}
.seo-ribbon .left em { color: var(--gold); font-style: italic; }
.seo-ribbon .right {
  font-size: 12px; font-weight: 600;
  color: rgba(250,246,236,0.7);
  text-align: right;
  line-height: 1.35;
}
.seo-ribbon .right strong { color: var(--green-bg); }

/* Nav dropdown */
.nav-dd { position: relative; }
.nav-dd > a { cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.nav-dd > a::after {
  content: "▾"; font-size: 9px; color: var(--ink-3);
  transition: transform 0.15s;
}
.nav-dd:hover > a::after,
.nav-dd:focus-within > a::after { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 14px); left: -16px;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(40,30,10,0.16);
  padding: 8px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.2s;
  z-index: 60;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}
.nav-dd-item {
  display: grid; grid-template-columns: 24px 1fr; align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 9px;
  font-size: 14px; color: var(--ink);
  transition: background 0.12s;
}
.nav-dd-item:hover { background: var(--cream-2); }
.nav-dd-item .num {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--gold-dk);
}
.nav-dd-item .sub {
  display: block; font-size: 11.5px; color: var(--ink-3);
  margin-top: 1px; font-weight: 500;
}

@media (max-width: 900px) {
  .nav-dd-menu { position: static; min-width: 0; box-shadow: none; }
}
