/* ─────────────────────────────────────────────────────────────────────────
   Marly Chrome — shared nav + footer
   Source of truth: marly/website/index.html
   Deployed at:     marly.cc/review/assets/shared-chrome.css
   Used by:         every review portal page (marly.cc/review)
   DO NOT EDIT directly — extract from website/index.html and re-paste
   ───────────────────────────────────────────────────────────────────────── */

/* CSS custom properties required by nav + footer rules below */
:root {
  --border: #c4c8cf;
  --text:   #111111;
  --dim:    #555;
  --accent: #FF6B00;
  --max:    1120px;
}

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 36px;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(250,250,248,0.92);
  border-color: var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}
.nav-icon-mobile { display: none; }
.nav-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FF6B00;
  text-decoration: none;
  background: transparent;
  border: 1px solid #FF6B00;
  padding: 12px 24px;
  border-radius: 500px;
  transition: background 0.18s, color 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nav-cta:hover { background: #FF6B00; color: #fff; }
.nav-text-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-text-link:hover { color: var(--accent); }

/* ─── NAV CTA SHIMMER ──────────────────────────────── */
.nav-cta { overflow: hidden; }
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.25) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: ctaShimmer 4s ease-in-out 2s infinite;
}
.nav-cta { position: relative; }
@keyframes ctaShimmer {
  0%    { transform: translateX(-100%); }
  25%   { transform: translateX(100%);  }
  100%  { transform: translateX(100%);  }
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: #FF6B00;
  padding: 28px 36px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.footer-logo img { height: 24px; width: auto; display: block; }
.footer-note { font-size: 11px; color: #fff; }
.footer-legal { font-size: 11px; color: #fff; display: flex; gap: 16px; }
.footer-legal a { color: #fff; text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 700px) {
  nav { padding: 16px 20px; }
  .nav-wordmark { display: none; }
  .nav-icon-mobile { display: block; }
  footer { padding: 20px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-legal { margin-left: 0; }
  .footer-tagline { display: block; }
  .footer-sep { display: none; }
  .footer-copy { display: block; margin-top: 4px; }
}
