/*
 * luova-brand.css
 * Shared design tokens & base styles for all Luova pages.
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --ink:          #1a1814;
  --ink-mid:      #2a2720;
  --ink-soft:     #52524e;
  --ink-soft2:    #5a5650;
  --ink-faint:    #82827e;

  --bg-hero:      #e8e8e6;
  --bg-secondary: #dfdfe0;
  --bg-deep:      #d4d4d5;
  --bg:           #e8e8e6;
  --bg2:          #dfdfe0;
  --white:        #fdfcfa;

  --accent:       #5c6e3a;
  --accent-light: #8a9f62;
  --accent-faint: rgba(92,110,58,0.12);
  --moss:         #4a5c3a;
  --moss-light:   #6b7f57;

  --gold:         #5c6e3a;
  --gold-light:   #8a9f62;
  --red:          #8a3030;

  --parchment:        #dfdfe0;
  --parchment-warm:   #dfdfe0;
  --parchment-deep:   #d4d4d5;
  --parchment-pale:   #e8e8e6;

  --card-bg:      rgba(255,255,255,0.42);
  --card-border:  rgba(255,255,255,0.72);
  --card-shadow:  0 2px 8px rgba(26,24,20,0.04),0 6px 24px rgba(26,24,20,0.06),inset 0 1px 0 rgba(255,255,255,0.65);
  --card-shadow-hover: 0 8px 32px rgba(26,24,20,0.1),0 2px 8px rgba(26,24,20,0.06),inset 0 1px 0 rgba(255,255,255,0.65);

--serif:   'Cormorant Garamond', Georgia, serif;
  --display: 'Playfair Display',   Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
  --mono:    'DM Sans', system-ui, sans-serif;

  --px: 7rem;
}

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

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
  background: var(--bg-hero);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
}
body { overflow-x: hidden; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .3;
}

.snap-wrap {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
footer.snap-section { min-height: unset; }

.section-dots {
  position: fixed;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  pointer-events: auto;
}
.section-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(92,110,58,0.45);
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
  display: block;
  padding: 0;
}
.section-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}
.section-dot:hover:not(.active) {
  background: rgba(92,110,58,0.2);
  border-color: rgba(92,110,58,0.6);
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: .85rem var(--px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  background: rgba(232,232,230,0.55);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 1px 0 rgba(92,110,58,0.06), 0 4px 24px rgba(26,24,20,0.04);
  transition: background .4s, box-shadow .4s;
}
header.sticky {
  position: sticky;
  background: rgba(232,232,230,0.55);
  box-shadow: 0 1px 0 rgba(92,110,58,0.06), 0 4px 24px rgba(26,24,20,0.04);
}
header.scrolled {
  background: rgba(232,232,230,0.88);
  box-shadow: 0 1px 0 rgba(92,110,58,0.08), 0 4px 32px rgba(26,24,20,0.1);
}

.logo {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-lu { color: var(--ink); }
.logo-o  { color: var(--accent); }
.logo-va { color: var(--ink); }

/* ── NAV — shared by both index and account ── */
nav, .header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
nav a, .header-nav a {
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 400;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  padding: .4rem 1.1rem;
  border-radius: 100px;
  transition: all .2s;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
nav a:not(:last-child)::after,
.header-nav a:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  color: rgba(122,118,112,0.4);
  font-size: .9rem;
  pointer-events: none;
}
nav a:hover,
.header-nav a:hover,
.header-nav a.active { color: var(--accent); background: transparent; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-label { cursor: pointer; }
.nav-dropdown-caret {
  width: 9px; height: 9px;
  margin-left: .15rem;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform .25s;
}
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret,
.nav-dropdown.open .nav-dropdown-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 170px;
  background: rgba(232,232,230,0.94);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(26,24,20,0.13), inset 0 1px 0 rgba(255,255,255,0.6);
  padding: .4rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 250;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a { padding: .55rem .85rem; border-radius: 9px; font-size: .8rem; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.65); }
nav .nav-dropdown-menu a::after { content: none; }

/* ── HEADER RIGHT ── */
.header-right {
  display: flex;
  align-items: center;
  gap: .65rem;
  justify-content: flex-end;

}
.header-sep { width: 1px; height: 1.1rem; background: rgba(122,118,112,0.2); flex-shrink: 0; }

/* ── ACCOUNT CHIP ── */
.acct-chip {
  display: flex; align-items: center; gap: .7rem;
  padding: .38rem .75rem .38rem .45rem;
  background: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.72);
  border-radius: 100px; backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  cursor: default;
}
.acct-chip-avatar {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(92,110,58,0.15);
  border: 1px solid rgba(92,110,58,0.28);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: .75rem; font-weight: 300; color: var(--accent);
  overflow: hidden;
}
.acct-chip-name { font-family: var(--sans); font-size: .82rem; font-weight: 500; color: var(--ink); }
.acct-chip-sep  { width: 1px; height: .9rem; background: rgba(122,118,112,0.22); }
.acct-chip-credit { display: flex; align-items: baseline; gap: .3rem; }
.acct-chip-credit-label { font-family: var(--sans); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); }
.acct-chip-credit-val   { font-family: var(--sans); font-size: .78rem; font-weight: 400; color: var(--accent); }

/* ── HEADER BUTTONS ── */
.btn-hdr {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem 1rem;
  font-family: var(--sans); font-size: .75rem; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid rgba(122,118,112,0.28);
  background: rgba(255,255,255,0.35); backdrop-filter: blur(10px);
  color: var(--ink-soft2, var(--ink-soft)); text-decoration: none;
  border-radius: 100px; transition: all .25s; cursor: pointer; white-space: nowrap;
}
.btn-hdr:hover { background: rgba(255,255,255,0.65); border-color: rgba(92,110,58,0.3); color: var(--accent); }
.btn-hdr.accent { background: rgba(74,92,58,0.8); border-color: rgba(107,127,87,0.4); color: var(--white); }
.btn-hdr.accent:hover { background: rgba(74,92,58,0.97); color: var(--white); }
.btn-hdr svg { width: 11px; height: 11px; flex-shrink: 0; }

.notif-btn {
  position: relative; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(122,118,112,0.28); background: rgba(255,255,255,0.35);
  backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s; color: var(--ink-soft2, var(--ink-soft)); padding: 0;
}
.notif-btn:hover { background: rgba(255,255,255,0.65); border-color: rgba(92,110,58,0.3); color: var(--accent); }
.notif-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.notif-pip { position: absolute; top: 4px; right: 4px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); border: 1.5px solid var(--bg); display: none; }
.notif-pip.show { display: block; }

/* ── SHARED BUTTONS ── */
.btn-auth {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .48rem 1.1rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 400;
  letter-spacing: .09em; text-transform: uppercase;
  border: 1px solid rgba(92,110,58,0.3); background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px); color: var(--accent); text-decoration: none;
  border-radius: 100px; transition: all .3s; cursor: pointer; white-space: nowrap;
  line-height: 1; vertical-align: middle;
}
.btn-auth:hover { background: rgba(92,110,58,0.1); border-color: rgba(92,110,58,0.5); }
.btn-auth.primary { background: rgba(92,110,58,0.12); border-color: rgba(92,110,58,0.4); }
.btn-auth.primary:hover { background: rgba(92,110,58,0.2); }

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .78rem 1.75rem;
  font-family: var(--sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.7); background: rgba(255,255,255,0.52);
  backdrop-filter: blur(16px); color: var(--ink); border-radius: 100px; transition: all .3s;
  box-shadow: 0 2px 12px rgba(26,24,20,0.06), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn:hover {
  background: rgba(255,255,255,0.72);
  box-shadow: 0 6px 22px rgba(26,24,20,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
  transform: translateY(-1px);
}
.btn-accent { background: rgba(74,92,58,0.82); border-color: rgba(107,127,87,0.4); color: var(--white); }
.btn-accent:hover { background: rgba(74,92,58,0.97); color: var(--white); }

.btn-outline-warm {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .72rem 1.6rem; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(92,110,58,0.32); background: rgba(255,255,255,0.35);
  backdrop-filter: blur(10px); color: var(--accent); font-family: var(--sans); font-weight: 400;
  border-radius: 100px; transition: all .3s; cursor: pointer;
}
.btn-outline-warm:hover { background: rgba(92,110,58,0.1); border-color: rgba(92,110,58,0.5); }
.btn-dim { opacity: .6; }

/* ── EYEBROW — shared across all pages ── */
.eyebrow,
.section-eyebrow { display: flex; align-items: center; gap: .7rem; width: fit-content; margin-bottom: .5rem; }
.eyebrow-line,
.section-eyebrow .eyebrow-line { display: block; width: 1.4rem; height: 1px; background: var(--accent); flex-shrink: 0; }
.eyebrow-text,
.section-eyebrow .eyebrow-text {
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
}

/* ── SECTION HEADERS ── */
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1rem; gap: 1rem; }
.section-title {
  font-family: var(--display); font-size: 1.4rem; font-weight: 400; color: var(--ink);
  display: flex; align-items: baseline; gap: .4rem; line-height: 1;
}
.section-title em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.section-link {
  font-family: var(--sans); font-size: .75rem; font-weight: 400; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); text-decoration: none;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: opacity .2s; flex-shrink: 0; white-space: nowrap;
}
.section-link:hover { opacity: .7; }

/* ── PAGE LAYOUT ── */
.page { padding: 2rem var(--px) 5rem; }
.body-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.4rem; align-items: start; }
.right-col { display: flex; flex-direction: column; gap: 1.4rem; }

/* ── CARD ── */
.card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; backdrop-filter: blur(14px);
  padding: 1.5rem 1.7rem; box-shadow: var(--card-shadow);
}

/* ── PROFILE BAR ── */
.profile-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.1rem 1.7rem; margin-bottom: 2rem;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 18px; backdrop-filter: blur(16px); box-shadow: var(--card-shadow);
}
.profile-bar-left { display: flex; align-items: center; gap: 1.1rem; }
.profile-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: rgba(92,110,58,0.15);
  border: 1.5px solid rgba(92,110,58,0.28);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: var(--accent);
  overflow: hidden;
}
.profile-name { font-family: var(--display); font-size: 1.2rem; font-weight: 400; color: var(--ink); line-height: 1.1; }
.profile-name em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.profile-sub { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; color: var(--ink-faint); margin-top: .18rem; }
.profile-bar-sep { width: 1px; height: 2.2rem; background: rgba(122,118,112,0.18); flex-shrink: 0; }
.profile-badges { display: flex; gap: .4rem; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: .28rem;
  padding: .18rem .6rem; border-radius: 100px;
  font-family: var(--sans); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.badge-member     { background: rgba(74,92,58,0.1);  border: 1px solid rgba(74,92,58,0.22);  color: var(--moss-light); }
.badge-new        { background: rgba(92,110,58,0.1); border: 1px solid rgba(92,110,58,0.22); color: var(--accent); }
.badge-subscriber { background: rgba(48,80,138,0.08); border: 1px solid rgba(48,80,138,0.2); color: #4a6090; }
.profile-bar-right { display: flex; align-items: center; gap: 2rem; }
.credit-group { display: flex; flex-direction: column; gap: .18rem; text-align: right; }
.credit-group-label { font-family: var(--sans); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.credit-group-val   { font-family: var(--display); font-size: 1.4rem; font-weight: 400; line-height: 1; color: var(--accent); }
.credit-group-sub   { font-family: var(--sans); font-size: .75rem; letter-spacing: .06em; color: var(--ink-faint); }
.profile-bar-actions { display: flex; gap: .45rem; }

/* ── RELEASES CAROUSEL ── */
.releases-section { margin-bottom: 1.8rem; }
.carousel-wrap { position: relative; }
.carousel-viewport { overflow: hidden; border-radius: 14px; }
.carousel-track { display: flex; gap: .8rem; transition: transform .65s cubic-bezier(0.4,0,0.2,1); }
.release-card {
  flex: 0 0 calc(25% - .6rem); border-radius: 12px; overflow: hidden; position: relative;
  background: var(--card-bg); border: 1px solid var(--card-border); cursor: pointer;
  box-shadow: var(--card-shadow); transition: box-shadow .3s, transform .3s;
}
.release-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.release-img {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  background: linear-gradient(135deg,var(--parchment-deep),var(--parchment-warm));
  display: flex; align-items: center; justify-content: center;
}
.release-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.release-card:hover .release-img img { transform: scale(1.04); }
.release-img-ph { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(180,176,169,0.45); z-index: 1; }
.promo-ribbon { position: absolute; top: .55rem; left: .55rem; display: flex; flex-direction: column; gap: .25rem; z-index: 2; pointer-events: none; }
.promo-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .2rem .58rem; border-radius: 100px;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase;
  backdrop-filter: blur(8px); line-height: 1;
}
.promo-save  { background: rgba(92,110,58,0.88); color: #fdfcfa; border: 1px solid rgba(107,127,87,0.35); }
.promo-until { background: rgba(26,24,20,0.68); color: rgba(245,242,236,0.88); border: 1px solid rgba(255,255,255,0.12); }
.release-overlay {
  position: absolute; inset: 0;
  background: rgba(26,24,20,0.68); backdrop-filter: blur(5px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  opacity: 0; transition: opacity .28s; padding: 1rem; z-index: 3;
}
.release-card:hover .release-overlay { opacity: 1; }
.release-overlay-name { font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--white); text-align: center; line-height: 1.2; }
.release-overlay-btns { display: flex; gap: .4rem; }
.rl-btn {
  padding: .28rem .65rem; font-family: var(--sans); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 400;
  border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.09);
  color: var(--white); border-radius: 100px; cursor: pointer; transition: all .2s; text-decoration: none;
}
.rl-btn:hover { background: rgba(74,92,58,0.55); border-color: rgba(107,127,87,0.4); }
.rl-btn.mp { border-color: rgba(107,127,87,0.4); color: var(--accent-light); }
.rl-btn.mp:hover { background: rgba(92,110,58,0.18); }
.release-footer {
  padding: .52rem .8rem .5rem; border-top: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: space-between; gap: .4rem;
}
.release-loc {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-faint); display: flex; align-items: center; gap: .3rem;
}
.release-loc-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-light); flex-shrink: 0; }
.release-loc.promo .release-loc-dot { background: #c4704a; }
.release-loc.promo { color: var(--accent); }
.release-price-tag { font-family: var(--mono); font-size: .72rem; color: var(--ink-faint); letter-spacing: .04em; }
.release-price-tag.promo { color: var(--accent); }
.carousel-controls { display: flex; align-items: center; gap: .6rem; }
.carousel-dots { display: flex; gap: .35rem; align-items: center; }
.carousel-dot {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(122,118,112,0.25);
  cursor: pointer; transition: all .3s; border: none; padding: 0;
}
.carousel-dot.active { background: var(--accent); width: 14px; border-radius: 3px; }
.carousel-nav { display: flex; gap: .4rem; }
.c-btn {
  width: 28px; height: 28px; border: 1px solid rgba(122,118,112,0.2); border-radius: 50%;
  background: rgba(255,255,255,0.4); backdrop-filter: blur(6px); color: var(--ink-soft2, var(--ink-soft));
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; padding: 0;
}
.c-btn svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.c-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── PURCHASE HISTORY ── */
.history-list { display: flex; flex-direction: column; gap: .45rem; margin-top: .9rem; }
.history-item {
  display: flex; align-items: center; gap: .9rem;
  padding: .65rem .9rem; border-radius: 11px;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.65); transition: all .2s;
}
.history-item:hover { background: rgba(255,255,255,0.72); box-shadow: 0 2px 10px rgba(26,24,20,0.05); }
.history-thumb {
  width: 42px; height: 42px; border-radius: 8px;
  background: linear-gradient(135deg,var(--parchment-deep),var(--parchment-warm));
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.6); overflow: hidden;
}
.history-thumb img { width: 100%; height: 100%; object-fit: cover; }
.history-thumb-ph { font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(180,176,169,0.5); }
.history-info { flex: 1; min-width: 0; }
.history-name  { font-family: var(--serif); font-size: 1rem; font-weight: 300; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.history-meta  { display: flex; align-items: center; gap: .5rem; margin-top: .1rem; flex-wrap: wrap; }
.history-date  { font-family: var(--sans); font-size: .75rem; letter-spacing: .04em; color: var(--ink-faint); }
.history-price { font-family: var(--sans); font-size: .75rem; color: var(--accent); letter-spacing: .03em; }
.history-event {
  padding: .07rem .45rem; border-radius: 100px;
  background: rgba(92,110,58,0.08); border: 1px solid rgba(92,110,58,0.18);
  font-family: var(--sans); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent);
}
.history-actions { display: flex; gap: .35rem; flex-shrink: 0; }
.icon-btn {
  width: 28px; height: 28px; border-radius: 8px;
  border: 1px solid rgba(122,118,112,0.2); background: rgba(255,255,255,0.45);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft2, var(--ink-soft)); transition: all .22s; padding: 0; position: relative;
}
.icon-btn svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.icon-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,255,255,0.7); }
.icon-btn[data-tip]:hover::after {
  content: attr(data-tip); position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%); background: rgba(26,24,20,0.85); color: #fdfcfa;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .05em;
  padding: .22rem .55rem; border-radius: 5px; white-space: nowrap; pointer-events: none;
}

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 2rem 1rem .5rem; color: var(--ink-faint); }
.empty-icon  { font-size: 1.6rem; opacity: .3; margin-bottom: .4rem; }
.empty-state p { font-family: var(--serif); font-size: .9rem; font-style: italic; color: var(--ink-faint); }

/* ── PERKS ── */
.perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-top: .9rem; }
.perk-item {
  padding: .85rem .95rem; border-radius: 11px;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.65);
  display: flex; align-items: flex-start; gap: .7rem; transition: all .2s;
}
.perk-item:hover { background: rgba(255,255,255,0.7); box-shadow: 0 2px 10px rgba(26,24,20,0.05); }
.perk-item.full { grid-column: 1 / -1; }
.perk-icon-wrap {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(92,110,58,0.1); border: 1px solid rgba(92,110,58,0.18);
}
.perk-icon-wrap svg { width: 13px; height: 13px; stroke: var(--accent); fill: none; stroke-width: 1.7; }
.perk-icon-wrap.moss { background: rgba(74,92,58,0.1); border-color: rgba(74,92,58,0.22); }
.perk-icon-wrap.moss svg { stroke: var(--moss-light); }
.perk-label { font-family: var(--sans); font-size: .86rem; font-weight: 500; color: var(--ink); margin-bottom: .12rem; }
.perk-value { font-family: var(--sans); font-size: .75rem; color: var(--accent); letter-spacing: .04em; }
.perk-sub   { font-family: var(--sans); font-size: .85rem; color: var(--ink-faint); line-height: 1.6; margin-top: .06rem; }
.perk-progress { margin-top: .6rem; }
.prog-labels { display: flex; justify-content: space-between; font-family: var(--mono); font-size: .72rem; letter-spacing: .05em; color: var(--ink-faint); margin-bottom: .35rem; }
.prog-track { height: 3px; border-radius: 2px; background: rgba(122,118,112,0.15); overflow: hidden; }
.prog-fill  { height: 100%; border-radius: 2px; background: linear-gradient(90deg,var(--accent),var(--accent-light)); transition: width .9s ease; }

/* ── GIVEAWAY ── */
.giveaway-notice {
  display: flex; align-items: center; gap: .9rem;
  padding: .9rem 1rem; border-radius: 11px; margin-top: .7rem;
  background: linear-gradient(135deg,rgba(92,110,58,0.1),rgba(92,110,58,0.04));
  border: 1px solid rgba(92,110,58,0.28); cursor: pointer; transition: all .22s; text-decoration: none;
}
.giveaway-notice:hover {
  background: linear-gradient(135deg,rgba(92,110,58,0.16),rgba(92,110,58,0.08));
  border-color: rgba(92,110,58,0.45); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(92,110,58,0.12);
}
.giveaway-pip {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(92,110,58,0.18); flex-shrink: 0; animation: gpulse 2s ease-in-out infinite;
}
@keyframes gpulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(92,110,58,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(92,110,58,0.07); }
}
.giveaway-text  { flex: 1; }
.giveaway-title { font-family: var(--sans); font-size: .86rem; font-weight: 500; color: var(--ink); margin-bottom: .1rem; }
.giveaway-desc  { font-family: var(--sans); font-size: .75rem; color: var(--accent); letter-spacing: .03em; }
.giveaway-arrow { color: var(--accent); opacity: .7; }

/* ── SUBSCRIPTION ── */
.sub-status-row  { display: flex; align-items: center; gap: .55rem; margin-bottom: .7rem; }
.sub-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--moss-light); box-shadow: 0 0 0 3px rgba(74,92,58,0.15); flex-shrink: 0; }
.sub-dot.off { background: var(--ink-faint); box-shadow: 0 0 0 3px rgba(90,86,80,0.1); }
.sub-status-text { font-family: var(--sans); font-size: .86rem; font-weight: 500; color: var(--ink); }
.sub-status-text span { font-weight: 300; color: var(--ink-soft2, var(--ink-soft)); }
.sub-desc { font-family: var(--serif); font-size: 1rem; color: var(--ink-soft2, var(--ink-soft)); line-height: 1.7; margin-bottom: .75rem; }
.sub-channels { display: flex; flex-direction: column; gap: .42rem; }
.sub-channel {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem .82rem; border-radius: 10px;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.65); transition: background .18s;
}
.sub-channel:hover { background: rgba(255,255,255,0.7); }
.sub-channel-left { display: flex; align-items: center; gap: .55rem; }
.sub-ch-icon {
  width: 26px; height: 26px; border-radius: 7px;
  background: rgba(92,110,58,0.08); border: 1px solid rgba(92,110,58,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sub-ch-icon svg { width: 11px; height: 11px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.sub-ch-name { font-family: var(--sans); font-size: .86rem; color: var(--ink); font-weight: 400; }
.sub-ch-desc { font-family: var(--sans); font-size: .75rem; color: var(--ink-faint); margin-top: .06rem; }
.toggle {
  width: 34px; height: 19px; border-radius: 10px;
  background: rgba(122,118,112,0.22); border: none; cursor: pointer;
  position: relative; transition: background .25s; flex-shrink: 0; padding: 0;
}
.toggle::after {
  content: ''; position: absolute; top: 2.5px; left: 2.5px;
  width: 14px; height: 14px; border-radius: 50%; background: var(--white);
  transition: transform .25s; box-shadow: 0 1px 3px rgba(26,24,20,0.15);
}
.toggle.on { background: var(--moss); }
.toggle.on::after { transform: translateX(15px); }

/* ── WISHLIST ── */
.wishlist-banner {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.1rem; border-radius: 11px;
  background: linear-gradient(135deg,rgba(92,110,58,0.07),rgba(92,110,58,0.03));
  border: 1px solid rgba(92,110,58,0.18); margin-bottom: .8rem;
}
.wishlist-icon-wrap {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(92,110,58,0.1); border: 1px solid rgba(92,110,58,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wishlist-icon-wrap svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.wishlist-text h3 { font-family: var(--sans); font-size: .86rem; font-weight: 500; color: var(--ink); margin-bottom: .16rem; }
.wishlist-text p  { font-family: var(--serif); font-size: .9rem; color: var(--ink-soft2, var(--ink-soft)); line-height: 1.55; }
.wishlist-text a  { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(92,110,58,0.3); }
.wishlist-text a:hover { border-color: var(--accent); }
.wishlist-count-badge {
  display: flex; flex-direction: column; align-items: center;
  padding: .5rem .85rem;
  background: rgba(92,110,58,0.1); border: 1px solid rgba(92,110,58,0.22);
  border-radius: 10px; flex-shrink: 0; margin-left: auto;
}
.wishlist-count-num   { font-family: var(--display); font-size: 1.6rem; font-weight: 400; color: var(--accent); line-height: 1; }
.wishlist-count-label { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); opacity: .7; }
.wishlist-items { display: flex; flex-direction: column; gap: .4rem; margin-top: .5rem; }
.wishlist-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .5rem .8rem; border-radius: 9px;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.65);
}
.wishlist-item-thumb { width: 36px; height: 36px; border-radius: 7px; background: var(--parchment-deep); flex-shrink: 0; overflow: hidden; border: 1px solid rgba(255,255,255,0.6); }
.wishlist-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wishlist-item-name  { font-family: var(--serif); font-size: .9rem; color: var(--ink); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wishlist-item-price { font-family: var(--mono); font-size: .72rem; color: var(--accent); }

/* ── SUBSCRIPTION TIERS ── */
.tiers-section { margin-top: 1.4rem; }
.tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .65rem; margin-top: .9rem; }
.tier-card {
  padding: 1.1rem 1.2rem; border-radius: 12px;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.65);
  transition: all .22s; position: relative; overflow: hidden;
}
.tier-card:hover { background: rgba(255,255,255,0.7); box-shadow: 0 4px 16px rgba(26,24,20,0.07); transform: translateY(-2px); }
.tier-card.current-tier { background: rgba(92,110,58,0.06); border-color: rgba(92,110,58,0.3); box-shadow: 0 0 0 2px rgba(92,110,58,0.12); }
.tier-current-pill {
  position: absolute; top: .65rem; right: .65rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--accent); color: #fdfcfa; padding: .13rem .48rem; border-radius: 3px; display: none;
}
.tier-card.current-tier .tier-current-pill { display: block; }
.tier-icon  { font-size: 1.1rem; margin-bottom: .6rem; display: block; }
.tier-name  { font-family: var(--display); font-size: 1.05rem; font-weight: 400; margin-bottom: .12rem; }
.tier-name em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.tier-price { font-family: var(--sans); font-size: .75rem; color: var(--ink-faint); margin-bottom: .7rem; }
.tier-perks-list { list-style: none; display: flex; flex-direction: column; gap: .32rem; margin-bottom: .85rem; }
.tier-perk { display: flex; align-items: flex-start; gap: .45rem; font-size: .85rem; font-family: var(--sans); color: var(--ink-soft2, var(--ink-soft)); line-height: 1.6; }
.tier-perk-dot { width: 3.5px; height: 3.5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: .48rem; }
.tier-sub-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 100%;
  padding: .45rem .8rem; border-radius: 8px;
  font-family: var(--sans); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(92,110,58,0.1); border: 1px solid rgba(92,110,58,0.25); color: var(--accent);
  cursor: pointer; transition: all .2s;
}
.tier-sub-btn:hover { background: rgba(92,110,58,0.2); }

/* ── MODALS ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity .28s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(26,24,20,0.42); backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}
.modal {
  position: relative; z-index: 1; width: 100%; max-width: 480px;
  background: var(--parchment-warm); border: 1px solid rgba(255,255,255,0.82);
  border-radius: 20px; box-shadow: 0 32px 80px rgba(26,24,20,0.22), inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden; transform: translateY(20px) scale(.98);
  transition: transform .35s cubic-bezier(0.34,1.4,.64,1); max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  padding: 1.5rem 1.8rem .4rem;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.modal-title { font-family: var(--display); font-size: 1.55rem; font-weight: 400; color: var(--ink); line-height: 1.1; }
.modal-title em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.modal-close {
  width: 28px; height: 28px; border-radius: 8px; cursor: pointer;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(26,24,20,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft2, var(--ink-soft)); transition: all .2s; flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,255,255,0.85); color: var(--ink); }
.modal-close svg { width: 12px; height: 12px; }
.modal-body { padding: .9rem 1.8rem 1.8rem; }
.modal-divider { height: 1px; background: rgba(26,24,20,0.08); margin: .85rem 0; }
.field { margin-bottom: .85rem; }
.field-label { display: block; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft2, var(--ink-soft)); margin-bottom: .38rem; }
.field-input {
  width: 100%; padding: .62rem .9rem;
  background: rgba(255,255,255,0.72); border: 1px solid rgba(26,24,20,0.13);
  border-radius: 10px; color: var(--ink); font-family: var(--sans); font-size: .9rem;
  outline: none; transition: all .22s; box-shadow: inset 0 1px 3px rgba(26,24,20,0.04);
}
.field-input::placeholder { color: var(--ink-faint); }
.field-input:focus { background: rgba(255,255,255,0.95); border-color: rgba(92,110,58,0.4); box-shadow: 0 0 0 3px rgba(92,110,58,0.08); }
.field-input:disabled { opacity: .55; cursor: not-allowed; }
.field-textarea { resize: vertical; min-height: 88px; line-height: 1.6; font-size: .9rem; }
.field-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8680' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center;
  background-color: rgba(255,255,255,0.72);
}
.field-hint { font-size: .75rem; color: var(--ink-faint); margin-top: .3rem; font-family: var(--sans); }
.modal-footer { display: flex; gap: .6rem; justify-content: flex-end; padding-top: .55rem; }
.btn-modal { padding: .6rem 1.4rem; border-radius: 10px; cursor: pointer; font-family: var(--sans); font-size: .82rem; font-weight: 400; letter-spacing: .04em; transition: all .25s; border: 1px solid transparent; }
.btn-modal-primary { background: rgba(74,92,58,0.85); border-color: rgba(107,127,87,0.4); color: var(--white); box-shadow: 0 2px 10px rgba(74,92,58,0.2); }
.btn-modal-primary:hover { background: rgba(74,92,58,0.97); transform: translateY(-1px); }
.btn-modal-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-modal-ghost { background: rgba(255,255,255,0.45); border-color: rgba(26,24,20,0.12); color: var(--ink-mid); }
.btn-modal-ghost:hover { background: rgba(255,255,255,0.8); }
.modal-alert { border-radius: 9px; padding: .52rem .82rem; font-family: var(--sans); font-size: .78rem; margin-bottom: .85rem; display: none; line-height: 1.5; }
.modal-alert.show { display: block; }
.modal-alert.success { background: rgba(74,92,58,0.08); border: 1px solid rgba(74,92,58,0.2); color: var(--moss); }
.modal-alert.error   { background: rgba(138,48,48,0.07); border: 1px solid rgba(138,48,48,0.18); color: var(--red); }
.modal-item-card { display: flex; align-items: center; gap: .9rem; padding: .75rem 1rem; border-radius: 11px; background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.7); margin-bottom: 1rem; }
.modal-item-thumb { width: 40px; height: 40px; border-radius: 8px; background: linear-gradient(135deg,var(--parchment-deep),var(--parchment-warm)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: .72rem; color: rgba(180,176,169,0.5); border: 1px solid rgba(255,255,255,0.6); overflow: hidden; }
.modal-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-item-name { font-family: var(--serif); font-size: .95rem; font-style: italic; color: var(--ink); }
.modal-item-date { font-family: var(--mono); font-size: .72rem; color: var(--ink-faint); letter-spacing: .05em; margin-top: .1rem; }
.settings-tabs {
  display: flex; gap: .3rem; margin-bottom: 1.3rem;
  background: rgba(255,255,255,0.42); border-radius: 10px; padding: .22rem;
  border: 1px solid rgba(26,24,20,0.08);
}
.settings-tab { flex: 1; padding: .44rem; text-align: center; border-radius: 7px; font-family: var(--sans); font-size: .78rem; font-weight: 400; cursor: pointer; transition: all .2s; border: none; background: transparent; color: var(--ink-soft2, var(--ink-soft)); }
.settings-tab.active { background: rgba(255,255,255,0.85); color: var(--ink); font-weight: 500; box-shadow: 0 1px 4px rgba(26,24,20,0.08); }

/* ── FOOTER ── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(122,118,112,0.18);
  padding: .9rem var(--px);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.footer-left { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.footer-logo { font-family: var(--sans); font-size: 1rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; text-decoration: none; flex-shrink: 0; }
.footer-logo-lu { color: var(--ink); }
.footer-logo-o  { color: var(--accent); }
.footer-logo-va { color: var(--ink); }
.footer-sep { width: 1px; height: 1.2rem; background: rgba(122,118,112,0.25); flex-shrink: 0; }
.footer-social { display: flex; flex-direction: row; align-items: center; gap: .45rem; }
.footer-legal  { font-family: var(--sans); font-size: .75rem; font-weight: 400; color: var(--ink-soft2, var(--ink-soft)); letter-spacing: .03em; text-align: right; }
/* ── SHARED UTILITY ── */
.guide-link { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(92,110,58,0.3); padding-bottom: 1px; transition: border-color .2s, opacity .2s; }
.guide-link:hover { border-color: var(--accent); opacity: .75; }

.sl-social-btn, .footer-social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(122,118,112,0.22); border-radius: 50%;
  background: rgba(255,255,255,0.45); backdrop-filter: blur(8px);
  color: var(--ink-soft2, var(--ink-soft)); text-decoration: none; transition: all .25s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.sl-social-btn svg, .footer-social-btn svg { width: 14px; height: 14px; display: block; }
.sl-social-btn:hover, .footer-social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,255,255,0.7); transform: translateY(-1px); }
.footer-social-btn { width: 30px; height: 30px; }
.footer-social-btn svg { width: 13px; height: 13px; fill: currentColor; }

.flickr-label-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.flickr-label-link { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(92,110,58,0.3); padding-bottom: 1px; transition: border-color .2s, color .2s; }
.flickr-label-link:hover { color: var(--accent); border-color: var(--accent); }
.product-price { color: var(--accent-light); }
.product-btn:hover { background: rgba(74,92,58,0.6); border-color: rgba(107,127,87,0.5); }
.product-btn.mp { border-color: rgba(138,135,120,0.4); color: var(--accent-light); }
.product-btn.mp:hover { background: rgba(92,110,58,0.18); }
.guide-step-num { color: var(--accent); }
.sl-chip:hover { border-color: rgba(92,110,58,0.3); color: var(--accent); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.vis { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .05s; } .d2 { transition-delay: .1s; }  .d3 { transition-delay: .15s; }
.d4 { transition-delay: .2s; }  .d5 { transition-delay: .25s; } .d6 { transition-delay: .3s; }
.delay-1 { transition-delay: .1s; }  .delay-2 { transition-delay: .22s; } .delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .5s; }  .delay-5 { transition-delay: .64s; }
@keyframes pulse { 0%,100% { opacity: .7; } 50% { opacity: .35; } }
@keyframes spin  { to { transform: rotate(360deg); } }

/* ── SKELETON ── */
.skel { border-radius: 8px; background: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.5); animation: pulse 1.4s ease-in-out infinite; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg-deep); border-radius: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  :root { --px: 2.5rem; }
  .tiers-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  :root { --px: 1.8rem; }
  .body-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .acct-chip { display: none; }
  .tiers-grid { grid-template-columns: 1fr; }
  header { padding: .9rem 1.5rem; }
  nav { display: none; }
  footer { padding: .8rem 1.5rem; flex-wrap: wrap; }
  .footer-social { flex-wrap: wrap; }
  .section-dots { display: none; }
}
@media (max-width: 680px) {
  :root { --px: 1.2rem; }
  .release-card { flex: 0 0 calc(50% - .4rem); }
  .profile-bar { flex-wrap: wrap; gap: 1rem; }
  .profile-bar-right { gap: 1rem; }
}
