@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500&display=swap');

:root{
  --paper:#ffffff;
  --paper-soft:#fdf6f9;
  --ink:#18141c;
  --ink-soft:#726d7a;
  --blush:#fbcadb;
  --blush-soft:#fde5ee;
  --fuchsia:#ee2a8c;
  --fuchsia-deep:#c81577;
  --gold:#f5b942;
  --line:#f0e2ea;
  --shadow: 0 20px 40px -20px rgba(200, 21, 119, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.eyebrow::before{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background:var(--fuchsia);
  box-shadow:0 0 0 4px rgba(255,255,255,0.3);
}

/* ---------- NAV ---------- */
.nav{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px clamp(20px,4vw,56px);
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav .brand{
  font-family:'Anton','Impact','Futura','Arial Narrow Bold',sans-serif;
  font-weight:400;
  font-size:26px;
  letter-spacing:0.01em;
  color:var(--fuchsia);
  text-transform:lowercase;
}
.nav .cta{
  font-family:'Inter'; font-weight:600; font-size:14px;
  background:var(--ink); color:#fff;
  padding:10px 18px; border-radius:999px;
  border:none; cursor:pointer;
  text-decoration:none;
  transition:transform .15s ease, background .15s ease;
}
.nav .cta:hover{ background:var(--fuchsia-deep); transform:translateY(-1px); }

/* ---------- HERO (photo) ---------- */
.hero{
  position:relative;
  min-height:min(88vh, 780px);
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:#0c0c10;
}
.hero img.hero-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 20%;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10,8,12,0.75) 100%);
}
.hero-content{
  position:relative; z-index:1;
  width:100%;
  padding:0 clamp(20px,5vw,64px) clamp(40px,6vw,72px);
  text-align:center;
}
.hero-logo{
  font-family:'Anton','Impact','Futura','Arial Narrow Bold',sans-serif;
  font-weight:400;
  font-size:clamp(64px, 12vw, 140px);
  letter-spacing:0.01em;
  color:var(--fuchsia);
  text-transform:lowercase;
  line-height:0.9;
  margin:0 0 14px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-lede{
  color:#fff;
  font-size:clamp(16px,2vw,20px);
  max-width:640px;
  margin:0 auto 28px;
  line-height:1.55;
  font-weight:500;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-ctas{
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
}
.btn{
  font-family:'Inter'; font-weight:600; font-size:15px;
  padding:14px 26px; border-radius:999px;
  border:none; cursor:pointer;
  display:inline-flex; align-items:center; gap:8px;
  text-decoration:none;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn-primary{
  background:linear-gradient(135deg, var(--fuchsia), var(--fuchsia-deep));
  color:#fff;
  box-shadow:var(--shadow);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 24px 36px -16px rgba(200,21,119,0.5); }
.btn-ghost{
  background:rgba(255,255,255,0.12);
  color:#fff;
  border:1.5px solid rgba(255,255,255,0.5);
  backdrop-filter:blur(4px);
}
.btn-ghost:hover{ background:rgba(255,255,255,0.22); }

.hero-meta{
  margin-top:26px;
  display:flex; gap:24px; justify-content:center; flex-wrap:wrap;
  font-family:'IBM Plex Mono', monospace;
  font-size:12px; color:rgba(255,255,255,0.85); letter-spacing:0.04em;
}
.hero-meta b{ color:#fff; font-weight:700; }

.credit-line{
  position:relative; z-index:1;
  text-align:center;
  color:rgba(255,255,255,0.7);
  font-size:12.5px;
  letter-spacing:0.03em;
  padding-top:14px;
}
.credit-line b{ color:#fff; }

/* ---------- COPY BANNER ---------- */
.copy-banner{
  background:var(--ink);
  color:#fff;
  text-align:center;
  padding:16px 20px;
  font-size:14px;
}
.copy-banner b{ color:var(--fuchsia); }

/* ---------- FILTER BAR ---------- */
.filterbar{
  position:sticky; top:65px; z-index:40;
  display:flex; gap:8px; flex-wrap:wrap;
  padding:14px clamp(20px,4vw,56px);
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.chip{
  font-family:'Inter'; font-size:13px; font-weight:600;
  padding:8px 16px; border-radius:999px;
  background:var(--paper-soft); color:var(--ink-soft);
  border:1px solid transparent;
  cursor:pointer;
  transition:all .15s ease;
}
.chip:hover{ color:var(--ink); }
.chip.active{
  background:var(--ink); color:#fff;
}

/* ---------- GALLERY ---------- */
.gallery-section{
  padding:56px clamp(20px,4vw,56px) 100px;
  max-width:1280px; margin:0 auto;
}
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(180px, 1fr));
  gap:18px;
}
.tile{
  position:relative;
  background:var(--paper-soft);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:22px 16px 16px;
  text-align:center;
  cursor:pointer;
  transition:border-color .2s ease, transform .2s ease;
}
.tile:hover{ border-color:var(--blush); transform:translateY(-3px); }

.tile-imgwrap{
  position:relative;
  width:100%; aspect-ratio:1/1;
  margin-bottom:14px;
}
.tile-imgwrap img{
  width:100%; height:100%; object-fit:contain;
  position:relative; z-index:2;
  transition:transform .18s ease;
}
.tile-imgwrap .ghost{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:contain;
  opacity:0;
  mix-blend-mode:screen;
  transition:opacity .12s ease, transform .12s ease;
  pointer-events:none;
}
.tile-imgwrap .ghost.r{ filter:brightness(0) saturate(100%) invert(31%) sepia(89%) saturate(3000%) hue-rotate(325deg); }
.tile-imgwrap .ghost.c{ filter:brightness(0) saturate(100%) invert(80%) sepia(40%) saturate(1200%) hue-rotate(150deg); }

.tile:hover .tile-imgwrap img{ transform:translate(0,-2px); }
.tile:hover .ghost.r{ opacity:.55; transform:translate(-4px,1px); }
.tile:hover .ghost.c{ opacity:.45; transform:translate(4px,-1px); }

.tile-label{
  font-family:'Inter'; font-weight:600; font-size:13.5px;
  color:var(--ink);
  margin-bottom:2px;
}
.tile-tag{
  font-family:'IBM Plex Mono', monospace;
  font-size:10.5px; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--ink-soft);
}
.tile-actions{
  position:absolute; top:10px; right:10px;
  display:flex; gap:6px;
  opacity:0; transform:scale(.9);
  transition:opacity .15s ease, transform .15s ease;
  z-index:3;
}
.tile:hover .tile-actions,
.tile-actions.menu-open{ opacity:1; transform:scale(1); }
.tile-btn{
  width:30px; height:30px; border-radius:50%;
  background:var(--paper); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition:background .15s ease;
}
.tile-btn:hover{ background:var(--fuchsia); border-color:var(--fuchsia); }
.tile-btn:hover svg{ stroke:#fff; }
.tile-btn svg{ width:14px; height:14px; stroke:var(--ink); transition:stroke .15s ease; }

/* ---------- DOWNLOAD BG-CHOICE POPUP ---------- */
.dl-anchor{ position:relative; display:inline-block; }

.dl-menu{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:0 16px 32px -12px rgba(24,20,28,0.25);
  padding:6px;
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:168px;
  opacity:0;
  visibility:hidden;
  transform:translateY(-4px) scale(.97);
  transition:opacity .12s ease, transform .12s ease, visibility .12s ease;
  z-index:20;
}
.dl-menu.show{
  opacity:1; visibility:visible; transform:translateY(0) scale(1);
}
.dl-menu button{
  display:flex; align-items:center; gap:10px;
  width:100%;
  padding:9px 10px;
  border:none; background:none;
  border-radius:9px;
  font-family:'Inter'; font-weight:600; font-size:12.5px;
  color:var(--ink);
  text-align:left;
  cursor:pointer;
  transition:background .12s ease;
  white-space:nowrap;
}
.dl-menu button:hover{ background:var(--blush-soft); }
.dl-swatch{
  width:16px; height:16px; border-radius:5px;
  border:1px solid var(--line);
  flex-shrink:0;
}
.dl-swatch-white{ background:#ffffff; }
.dl-swatch-transparent{
  background-image:
    linear-gradient(45deg, #d9d9d9 25%, transparent 25%),
    linear-gradient(-45deg, #d9d9d9 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #d9d9d9 75%),
    linear-gradient(-45deg, transparent 75%, #d9d9d9 75%);
  background-size:8px 8px;
  background-position:0 0, 0 4px, 4px -4px, -4px 0;
  background-color:#fff;
}

/* Popup anchored to the pill CTAs needs to sit below them, centered isn't
   necessary since these buttons are wide enough for right-alignment */
.pack-dl-trigger .dl-menu{ right:0; left:auto; min-width:190px; }

.copied-toast{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(238,42,140,0.92);
  color:#fff; font-weight:700; font-size:13px;
  border-radius:var(--radius-md);
  opacity:0; pointer-events:none;
  transition:opacity .15s ease;
  z-index:4;
}
.copied-toast.show{ opacity:1; }

/* ---------- FOOTER CTA ---------- */
.footer-cta{
  text-align:center;
  padding:70px 20px 90px;
  background:linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
  border-top:1px solid var(--line);
}
.footer-cta h2{
  font-family:'Anton','Impact',sans-serif; font-weight:400;
  font-size:clamp(28px,4vw,42px);
  margin:0 0 12px;
  color:var(--ink);
}
.footer-cta p{ color:var(--ink-soft); margin:0 0 28px; }

.footer{
  padding:24px clamp(20px,4vw,56px) 40px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap;
  gap:12px;
  font-family:'IBM Plex Mono', monospace;
  font-size:12px; color:var(--ink-soft);
  border-top:1px solid var(--line);
}

@media (max-width:640px){
  .filterbar{ overflow-x:auto; flex-wrap:nowrap; top:58px; }
  .hero-meta{ gap:14px 20px; }
}
