/* ============================================================
   Mrs Ambitious — shared design system
   Used by every page: nav, mobile menu, footer, social glow icons,
   3D tilt-card utility, and the core design tokens.
   ============================================================ */

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

/* ── Artwork protection ──────────────────────────────────────────────────────
   Deters casual saving/copying of the digital art: no image dragging, no text
   selection over images, and no iOS/Android long-press "Save Image" menu.
   (A determined user can still screenshot — the web cannot fully prevent that —
   but this stops right-click-save, drag-to-desktop, and long-press-save.) */
img {
  -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; user-drag: none;
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
  -webkit-touch-callout: none;
}

:root {
  --gold: #D4AF37;
  --gold-light: #F0C84A;
  --gold-dark: #A8891F;
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --white: #FAFAFA;
  --muted: rgba(250,250,250,0.45);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}
/* Nothing overflows the viewport on small phones / high zoom. */
img { max-width: 100%; }
::selection { background: var(--gold); color: #000; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s cubic-bezier(.22,1,.36,1) forwards; }

/* ============================================================
   NAV — identical on every page
   ============================================================ */
nav.site-nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: flex-start; gap: 30px;
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  backdrop-filter: blur(12px);
}
/* nav-links pushes the right-hand cluster (currency + cta/cart) to the far edge.
   Paired with .ma-cur-switch's margin-left:auto so the logo + links never bunch. */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img {
  width: 54px; height: 54px; object-fit: contain; padding: 5px;
  background: #000; border: 1px solid rgba(212,175,55,0.35); border-radius: 4px;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.35));
}
.nav-logo .logo-crown { width: 34px; height: 30px; display: block; flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(212,175,55,0.45)); }
.nav-brand { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.08em; color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin-right: auto; }
.nav-links a {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #000;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 20px; border: none; cursor: pointer; text-decoration: none;
  display: inline-block; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
/* Currency switcher (injected into the navbar by script.js) */
.ma-cur-switch { display: inline-flex; align-items: center; margin-left: auto; margin-right: 16px; }
.ma-cur-switch select {
  font-family: var(--font-body, inherit); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--gold);
  background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.3);
  padding: 8px 10px; cursor: pointer; outline: none; border-radius: 0;
  -webkit-appearance: none; appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 26px;
}
.ma-cur-switch select:hover { border-color: var(--gold); background-color: rgba(212,175,55,0.12); }
.ma-cur-switch select option { background: #141414; color: #fafafa; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: #000; z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 36px; letter-spacing: 0.06em;
  color: var(--white); text-decoration: none; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 24px; right: 32px; font-size: 32px;
  color: var(--muted); cursor: pointer; background: none; border: none;
}
@media (max-width: 900px) {
  nav.site-nav { padding: 14px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .ma-cur-switch { margin-right: 12px; }
  .ma-cur-switch select { font-size: 10px; padding: 7px 22px 7px 8px; }
}

/* ============================================================
   FOOTER — identical on every page
   ============================================================ */
footer.site-footer {
  background: #000; padding: 56px 40px 28px;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img {
  width: 32px; height: 32px; object-fit: cover; border-radius: 0;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
}
.footer-logo-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.08em; }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 11px; color: rgba(250,250,250,0.22); letter-spacing: 0.04em; max-width: 720px; }
.footer-socials { display: flex; gap: 14px; align-items: center; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SOCIAL ICONS — glowing brand-colored icons, used in the footer
   and on the About page's social grid.
   ============================================================ */
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; flex-shrink: 0;
  background: #141414; border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.social-link svg { width: 18px; height: 18px; display: block; }
.social-link:hover { transform: translateY(-2px) scale(1.06); }

.social-yt   { color: #ff3b30; }
.social-yt:hover   { border-color: rgba(255,59,48,0.6);  box-shadow: 0 0 16px 2px rgba(255,59,48,0.55); }
.social-tt   { color: #25f4ee; }
.social-tt:hover   { border-color: rgba(37,244,238,0.6); box-shadow: 0 0 10px 1px rgba(37,244,238,0.5), 0 0 16px 4px rgba(254,44,85,0.35); }
.social-ig   { color: #e1306c; }
.social-ig:hover   { border-color: rgba(225,48,108,0.6); box-shadow: 0 0 16px 2px rgba(225,48,108,0.55), 0 0 20px 6px rgba(247,119,55,0.3); }
.social-fb   { color: #4267B2; }
.social-fb:hover   { border-color: rgba(66,103,178,0.6); box-shadow: 0 0 16px 2px rgba(66,103,178,0.55); }
.social-sc   { color: #FFFC00; }
.social-sc:hover   { border-color: rgba(255,252,0,0.6);  box-shadow: 0 0 16px 2px rgba(255,252,0,0.5); }

/* Richer "social card" variant used on the About page */
.social-icon-wrap {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #141414; border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.social-card:hover .social-icon-wrap { transform: scale(1.08); }
.social-icon-wrap.social-yt   { color: #ff3b30; }
.social-icon-wrap.social-tt   { color: #25f4ee; }
.social-icon-wrap.social-ig   { color: #e1306c; }
.social-icon-wrap.social-fb   { color: #4267B2; }
.social-icon-wrap.social-sc   { color: #FFFC00; }
.social-card:hover .social-icon-wrap.social-yt { border-color: rgba(255,59,48,0.6);  box-shadow: 0 0 18px 3px rgba(255,59,48,0.55); }
.social-card:hover .social-icon-wrap.social-tt { border-color: rgba(37,244,238,0.6); box-shadow: 0 0 12px 2px rgba(37,244,238,0.5), 0 0 18px 5px rgba(254,44,85,0.35); }
.social-card:hover .social-icon-wrap.social-ig { border-color: rgba(225,48,108,0.6); box-shadow: 0 0 18px 3px rgba(225,48,108,0.55), 0 0 22px 7px rgba(247,119,55,0.3); }
.social-card:hover .social-icon-wrap.social-fb { border-color: rgba(66,103,178,0.6); box-shadow: 0 0 18px 3px rgba(66,103,178,0.55); }
.social-card:hover .social-icon-wrap.social-sc { border-color: rgba(255,252,0,0.6);  box-shadow: 0 0 18px 3px rgba(255,252,0,0.5); }

.socials-section { padding: 80px 60px; background: var(--bg2); }
.socials-inner { max-width: 900px; margin: 0 auto; }
.socials-header { text-align: center; margin-bottom: 40px; }
.socials-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.socials-title { font-family: var(--font-display); font-size: clamp(32px,5vw,52px); line-height: 1; text-transform: uppercase; }
.gold-text { color: var(--gold); }
.socials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.social-card {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: var(--bg3); border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none; color: var(--white); transition: border-color 0.2s;
}
.social-card:hover { border-color: rgba(212,175,55,0.25); }
.social-text { flex: 1; min-width: 0; }
.social-platform { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.04em; }
.social-handle { font-size: 12px; color: var(--muted); }
.social-arrow { color: var(--gold); font-size: 16px; flex-shrink: 0; }
@media (max-width: 640px) {
  .socials-section { padding: 56px 24px; }
  .socials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SKILL PILLS — used on the About page's "What I Do" grid
   ============================================================ */
.skill-pill {
  background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.2);
  color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  padding: 14px 10px; text-align: center; transition: border-color 0.2s, background 0.2s;
}
.skill-pill:hover { border-color: rgba(212,175,55,0.5); background: rgba(212,175,55,0.1); }
@media (max-width: 768px) { .skill-grid { grid-template-columns: repeat(2, 1fr) !important; } }

/* ============================================================
   DISCOUNT / SALE DISPLAY — collection cards
   ============================================================ */
.card-price s {
  color: rgba(250,250,250,0.35);
  font-weight: 400;
  margin-right: 6px;
  text-decoration-color: rgba(212,175,55,0.6);
}
.card-price .sale-price { color: var(--gold); font-weight: 700; }
.card-sale-badge {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 5px 9px;
  background: rgba(212,175,55,0.09);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gold);
  width: fit-content;
}
.card-sale-badge.show { display: inline-flex; }
.card-sale-badge .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  animation: salePulse 1.4s ease-in-out infinite;
}
@keyframes salePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.card-sale-badge .sale-clock { font-variant-numeric: tabular-nums; font-weight: 700; }
.card-local-price {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(250,250,250,0.4);
}
.ma-local {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(250,250,250,0.4);
}

/* ============================================================
   PAYMENT TRUST BAR — shared by home.html and pay.html
   ============================================================ */
.trust-bar {
  margin-top: 36px;
  padding: 24px;
  background: #0f0f0f;
  border: 1px solid rgba(212,175,55,0.14);
}
.trust-bar-head {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 18px;
}
.trust-bar-head span {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(212,175,55,0.75);
}
.trust-badges {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
}
.trust-badge {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  width: 72px; height: 46px;
}
/* Card-image badges carry their own white card artwork (transparent PNG,
   cropped tight to content), so they render bare — no wrapper box, no
   padding — sized to fit one row even on the narrow 480px pay container. */
.trust-badge.is-card {
  background: transparent; border: none; box-shadow: none;
  width: 78px; height: 46px;
}
.trust-badge.dark { background: #16171c; border-color: rgba(212,175,55,0.18); }
.trust-badge svg { max-width: 100%; max-height: 100%; }
.trust-badge.is-card img { width: 100%; height: 100%; object-fit: contain; }
.local-pay {
  display: flex; align-items: flex-start; justify-content: center; gap: 7px;
  max-width: 460px; margin: 14px auto 0; padding: 0 6px;
  font-size: 11px; line-height: 1.5; text-align: center;
  color: rgba(250,250,250,0.4);
}
.local-pay-dot { flex-shrink: 0; font-size: 12px; line-height: 1.4; }
.trust-foot {
  text-align: center; margin-top: 16px;
  font-size: 10px; letter-spacing: 0.06em; color: rgba(250,250,250,0.3);
}
@media (max-width: 480px) {
  .trust-bar { padding: 18px; }
  .trust-badge { width: 62px; height: 40px; }
  .trust-badge.is-card { width: 62px; height: 40px; }
  .trust-badges { gap: 6px; }
}

/* ============================================================
   3D TILT-CARD UTILITY — reused by collection cards, homepage
   drop previews and social cards. JS behavior lives in script.js.
   ============================================================ */
[data-tilt] { transform-style: preserve-3d; transition: transform 0.1s; }
