/* ═══════════════════════════════════════════════════════════════════
   RACHIT STUDIO — Main CSS
   Direction: Obsidian Luxury · Cinematic editorial meets Apple precision
   ═══════════════════════════════════════════════════════════════════ */

/* ── Tokens ───────────────────────────────────────────────────────── */
:root {
  --gold:       #c9a84c;
  --gold-hi:    #e0c06e;
  --gold-lo:    rgba(201,168,76,0.1);
  --gold-ring:  rgba(201,168,76,0.28);
  --gold-glow:  rgba(201,168,76,0.18);

  --void:   #050508;
  --s1:     #08080c;
  --s2:     #0d0d12;
  --s3:     #131318;
  --s4:     #1a1a20;
  --s5:     #222228;

  --g1: rgba(255,255,255,0.06);
  --g2: rgba(255,255,255,0.04);
  --g3: rgba(255,255,255,0.02);

  --t1: #f3f0e9;
  --t2: rgba(243,240,233,0.55);
  --t3: rgba(243,240,233,0.28);
  --t4: rgba(243,240,233,0.11);

  --paper:  #f9f7f2;
  --paper2: #edeae3;
  --ink:    #111109;
  --ink2:   #38352e;

  --green: #4ec98a;
  --red:   #e87272;

  --fd: 'Cormorant Garamond', Georgia, serif;
  --fh: 'Syne', sans-serif;
  --fu: 'DM Mono', monospace;

  --px: clamp(1.5rem, 5vw, 6rem);
  --py: clamp(5rem, 10vw, 9rem);

  --e1: cubic-bezier(0.16, 1, 0.3, 1);
  --e2: cubic-bezier(0.4, 0, 0.2, 1);
  --e3: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body  { background: var(--void); color: var(--t1); font-family: var(--fu); font-size: 14px; line-height: 1.65; overflow-x: hidden; cursor: none; }
a     { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: inherit; color: inherit; }
img   { display: block; max-width: 100%; }

/* ── Grain ────────────────────────────────────────────────────────── */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Custom Cursor ────────────────────────────────────────────────── */
.cursor-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  position: fixed; z-index: 10000; pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .18s var(--e1), height .18s var(--e1), opacity .2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
  position: fixed; z-index: 9999; pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .45s var(--e1), height .45s var(--e1), border-color .25s, opacity .3s;
}
.cursor-dot.hovering  { width: 3px; height: 3px; }
.cursor-ring.hovering { width: 56px; height: 56px; border-color: rgba(201,168,76,0.8); }
.cursor-dot.clicking  { width: 10px; height: 10px; }
.cursor-ring.clicking { width: 28px; height: 28px; }

/* ── Scrollbar ────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--s5); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-ring); }

/* ── Nav ──────────────────────────────────────────────────────────── */
.main-nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200; height: 60px;
  display: flex; align-items: center; padding: 0 var(--px);
  background: rgba(5,5,8,0.75);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-bottom: 1px solid var(--g1);
  transition: background .4s var(--e2);
}
.main-nav.scrolled { background: rgba(5,5,8,0.92); }
.nav-logo {
  font-family: var(--fd); font-size: 1.1rem; font-weight: 400;
  letter-spacing: 0.02em; color: var(--t1); margin-right: auto;
}
.nav-logo em { color: var(--gold); font-style: italic; }
.nav-tabs { display: flex; gap: 2px; }
.nav-tab {
  font-family: var(--fu); font-size: 0.7rem; letter-spacing: 0.07em;
  color: var(--t3); padding: 0.45rem 0.9rem; border-radius: 4px;
  transition: color .2s var(--e2), background .2s;
  position: relative;
}
.nav-tab:hover { color: var(--t2); background: var(--g1); }
.nav-tab.active { color: var(--t1); }
.nav-tab.active::after {
  content: ''; position: absolute; bottom: -1px; left: 0.9rem; right: 0.9rem;
  height: 1px; background: var(--gold);
  animation: tabLine .3s var(--e1) both;
}
@keyframes tabLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.nav-shop-btn {
  margin-left: 2rem; font-family: var(--fh); font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--void); background: var(--gold);
  padding: 0.5rem 1.35rem; border-radius: 100px;
  transition: all .22s var(--e2);
}
.nav-shop-btn:hover { background: var(--gold-hi); transform: translateY(-1px); box-shadow: 0 4px 24px var(--gold-glow); }

/* ── Tab sections ─────────────────────────────────────────────────── */
.tab-section { display: none; padding-top: 60px; min-height: 100vh; }
.tab-section.active { display: block; animation: sectionIn .6s var(--e1) both; }
@keyframes sectionIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ════════════════════ RESUME TAB ════════════════════ */
#tab-resume { background: var(--s1); }

.resume-hero {
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--py) + 2rem) var(--px) var(--py);
}
/* animated gradient aurora */
.resume-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 110% 10%, rgba(201,168,76,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 80% at -10% 90%, rgba(201,168,76,0.03) 0%, transparent 60%);
  pointer-events: none;
}
/* giant watermark */
.resume-hero::after {
  content: 'RB';
  position: absolute; bottom: -.06em; right: var(--px);
  font-family: var(--fd); font-size: clamp(14rem, 32vw, 28rem); font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.04);
  line-height: 1; pointer-events: none; user-select: none;
}
.resume-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.resume-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.resume-name {
  font-family: var(--fd); font-weight: 300; line-height: 0.88;
  font-size: clamp(6rem, 15vw, 12rem);
  letter-spacing: -0.03em; color: var(--t1); margin-bottom: 2rem;
}
.resume-tagline {
  font-family: var(--fd); font-size: 1.25rem; font-style: italic; color: var(--t2);
  max-width: 400px;
}
.resume-hero-meta {
  position: absolute; right: var(--px); bottom: var(--py);
  display: flex; flex-direction: column; gap: 2rem;
}
.resume-info-item { display: flex; flex-direction: column; gap: 0.3rem; }
.info-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--t4); }
.resume-info-item span,
.resume-info-item a { font-size: 0.82rem; color: var(--t2); transition: color .15s; }
.resume-info-item a:hover { color: var(--gold); }

/* Resume light body */
.resume-body { background: var(--paper); color: var(--ink); }

.resume-section { padding: var(--py) var(--px); }
.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--fh); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink2);
  margin-bottom: 2.5rem;
}
.section-label::before { content: ''; width: 22px; height: 1px; background: var(--gold); }

.resume-about {
  font-family: var(--fd); font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.72; color: var(--ink); max-width: 700px;
}

.resume-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  padding: 0 var(--px) var(--py); background: var(--paper); color: var(--ink);
}
.exp-item { padding-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,0.08); margin-bottom: 2rem; }
.exp-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.exp-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.3rem; flex-wrap: wrap; gap: 0.5rem; }
.exp-header strong { font-family: var(--fh); font-size: 0.88rem; }
.exp-date { font-size: 0.7rem; color: var(--ink2); }
.exp-role { font-size: 0.72rem; color: var(--gold); margin-bottom: 0.6rem; letter-spacing: 0.04em; }
.exp-item > p:last-child { font-size: 0.83rem; color: var(--ink2); line-height: 1.72; }

.skills-group { margin-bottom: 2rem; }
.skills-group-label { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink2); margin-bottom: 0.85rem; }
.skills-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.skills-tags span {
  background: var(--paper2); border: 1px solid rgba(0,0,0,0.09);
  border-radius: 100px; font-size: 0.7rem; padding: 0.28rem 0.85rem; color: var(--ink2);
  transition: border-color .15s, color .15s;
}
.skills-tags span:hover { border-color: var(--gold); color: var(--ink); }

.resume-contact-strip {
  background: var(--s2); color: var(--t3);
  padding: 2rem var(--px);
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; font-size: 0.75rem;
}
.resume-contact-strip a { color: var(--gold); }
.resume-contact-strip a:hover { opacity: 0.75; }
.sep { color: var(--t4); }

/* ════════════════════ SOFTWARE TAB ════════════════════ */
#tab-software { background: var(--s1); }

.software-header {
  padding: calc(var(--py) + 2rem) var(--px) var(--py);
  border-bottom: 1px solid var(--g1); position: relative; overflow: hidden;
}
.software-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 100% 50%, rgba(201,168,76,0.03) 0%, transparent 65%);
}
.software-header h2 {
  font-family: var(--fd); font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 300; line-height: 1;
  margin-bottom: 1rem;
}
.software-header h2 em { color: var(--gold); }
.software-header p { color: var(--t2); font-size: 0.88rem; max-width: 480px; }

.software-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.software-card {
  padding: 3rem 2.5rem; border-right: 1px solid var(--g1); border-bottom: 1px solid var(--g1);
  position: relative; overflow: hidden; transition: background .35s var(--e2);
}
.software-card:last-child { border-right: none; }
.software-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 100%, var(--gold-lo) 0%, transparent 70%);
  opacity: 0; transition: opacity .4s;
}
.software-card:hover { background: var(--s2); }
.software-card:hover::before { opacity: 1; }
.card-live {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.62rem; letter-spacing: 0.12em; color: var(--green); margin-bottom: 1.5rem;
}
.live-dot {
  width: 6px; height: 6px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: dpulse 2.5s ease-in-out infinite;
}
@keyframes dpulse { 0%,100%{opacity:1;box-shadow:0 0 4px var(--green)} 50%{opacity:.4;box-shadow:0 0 12px var(--green)} }
.software-card h3 { font-family: var(--fh); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.8rem; }
.software-card p { font-size: 0.82rem; color: var(--t2); line-height: 1.78; margin-bottom: 1.5rem; }
.card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.75rem; }
.card-tags span { border: 1px solid var(--g1); border-radius: 3px; font-size: 0.62rem; padding: 0.18rem 0.5rem; color: var(--t3); }
.card-link { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap .2s var(--e1); }
.card-link:hover { gap: 0.8rem; }
.card-stack-icon { font-family: var(--fd); font-size: 2.5rem; color: var(--gold); opacity: 0.4; margin-bottom: 1.5rem; }

/* ════════════════════ PHOTOGRAPHY TAB ════════════════════ */
#tab-photography { background: var(--void); }

.photo-hero {
  position: relative; height: 88vh; overflow: hidden; display: flex; align-items: flex-end;
}
.photo-hero-bg {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; filter: saturate(0.5) brightness(0.7);
  animation: bgReveal 1.4s var(--e1) forwards;
}
.hero-bg-img:nth-child(1){animation-delay:.05s}
.hero-bg-img:nth-child(2){animation-delay:.18s}
.hero-bg-img:nth-child(3){animation-delay:.31s}
.hero-bg-img:nth-child(4){animation-delay:.44s}
.hero-bg-img:nth-child(5){animation-delay:.57s}
.hero-bg-img:nth-child(6){animation-delay:.70s}
@keyframes bgReveal { from{opacity:0;transform:scale(1.05)} to{opacity:.45;transform:scale(1)} }
.hero-bg-placeholder { background: var(--s3); }

.photo-hero-overlay {
  position: relative; z-index: 2; width: 100%; padding: var(--px);
  background: linear-gradient(to top, rgba(5,5,8,1) 0%, rgba(5,5,8,0.8) 35%, rgba(5,5,8,0.25) 65%, transparent 100%);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.hero-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--fd); font-size: clamp(4rem, 10vw, 8rem); font-weight: 300;
  line-height: 0.9; letter-spacing: -0.02em;
}
.hero-title span,.hero-title em { display: block; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle { margin-top: 1.25rem; font-size: 0.85rem; color: var(--t2); max-width: 440px; line-height: 1.82; }

.photo-section-body { padding: 3rem var(--px) var(--py); }

.photo-filter-bar {
  display: flex; gap: 0.45rem; flex-wrap: wrap;
  padding-bottom: 2rem; border-bottom: 1px solid var(--g1); margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--fu); font-size: 0.68rem; letter-spacing: 0.06em;
  color: var(--t3); padding: 0.38rem 1rem; border: 1px solid transparent;
  border-radius: 100px; transition: all .2s var(--e2);
}
.filter-btn:hover { color: var(--t1); border-color: var(--g1); }
.filter-btn.active { color: var(--gold); border-color: var(--gold-ring); background: var(--gold-lo); }

/* Photo grid - masonry with 3 columns, varied feel */
.photo-masonry { columns: 3; column-gap: 10px; }
.photo-item {
  break-inside: avoid; margin-bottom: 10px; border-radius: 6px;
  overflow: hidden; cursor: none;
  transition: transform .35s var(--e1);
}
.photo-item:hover { transform: scale(1.01); z-index: 1; }
.photo-thumb-wrap { position: relative; overflow: hidden; }
.photo-thumb-wrap img {
  width: 100%; display: block;
  transition: transform .6s var(--e2), filter .4s;
  filter: saturate(0.8);
}
.photo-item:hover .photo-thumb-wrap img { transform: scale(1.06); filter: saturate(1.1); }
.photo-hover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,8,0.92) 0%, rgba(5,5,8,0.1) 55%, transparent 100%);
  opacity: 0; transition: opacity .35s var(--e2);
  display: flex; align-items: flex-end;
}
.photo-item:hover .photo-hover-overlay { opacity: 1; }
.hover-content { padding: 1.25rem; }
.hover-title { font-family: var(--fh); font-size: 0.85rem; }
.hover-cat { font-size: 0.65rem; color: var(--t3); margin-top: 0.2rem; letter-spacing: 0.06em; }
.hover-price { font-family: var(--fd); font-size: 1.1rem; color: var(--gold); margin-top: 0.45rem; }

.photo-empty { text-align: center; padding: 5rem; color: var(--t4); }
.photo-empty a { color: var(--gold); }

/* ── Instagram section ──────────────────────────────────────────── */
.ig-section { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--g1); }
.ig-section-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem;
}
.ig-section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.ig-section-label::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.ig-profiles { display: flex; gap: 1rem; }
.ig-profile-chip {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.7rem; color: var(--t2);
  border: 1px solid var(--g1); border-radius: 100px; padding: 0.38rem 0.9rem;
  transition: all .2s var(--e2);
}
.ig-profile-chip svg { color: var(--gold); opacity: 0.7; }
.ig-profile-chip:hover { border-color: var(--gold-ring); color: var(--gold); }
.ig-profile-chip:hover svg { opacity: 1; }

.ig-grid { columns: 4; column-gap: 8px; }
.ig-item {
  break-inside: avoid; margin-bottom: 8px; border-radius: 5px;
  overflow: hidden; cursor: none; position: relative;
  aspect-ratio: 1; background: var(--s3);
}
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--e2), filter .3s; filter: saturate(0.75); }
.ig-item:hover img { transform: scale(1.08); filter: saturate(1.1); }
.ig-item-overlay {
  position: absolute; inset: 0;
  background: rgba(5,5,8,0.65);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem;
  opacity: 0; transition: opacity .3s;
}
.ig-item:hover .ig-item-overlay { opacity: 1; }
.ig-badge {
  position: absolute; top: 0.5rem; right: 0.5rem;
  background: rgba(5,5,8,0.75); border-radius: 100px;
  padding: 0.2rem 0.5rem; font-size: 0.6rem; color: var(--t3);
  display: flex; align-items: center; gap: 0.3rem;
}
.ig-badge svg { color: var(--gold); }
.ig-open-btn {
  font-size: 0.68rem; color: var(--gold); font-family: var(--fh); font-weight: 600;
  letter-spacing: 0.06em; border: 1px solid var(--gold-ring);
  border-radius: 100px; padding: 0.35rem 0.85rem;
}

.ig-empty {
  border: 1px dashed var(--g1); border-radius: 8px;
  padding: 3rem; text-align: center; color: var(--t4); font-size: 0.8rem;
}
.ig-empty strong { color: var(--t2); display: block; margin-bottom: 0.5rem; font-family: var(--fh); font-size: 0.9rem; font-weight: 500; }

.contributor-row {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--g1);
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 0.7rem; color: var(--t4); letter-spacing: 0.08em;
}
.contributor-row a { color: var(--gold); }

/* ════════════════════ CLUB 26 TAB ════════════════════ */
#tab-club { background: var(--s1); }

.club-hero {
  position: relative; overflow: hidden; min-height: 75vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--py) + 2rem) var(--px);
}
.club-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 60%, rgba(201,168,76,0.05) 0%, transparent 65%);
}
.club-gold-ring {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(70vw, 520px); height: min(70vw, 520px);
  border-radius: 50%; border: 1px solid rgba(201,168,76,0.1);
}
.club-gold-ring::before {
  content: ''; position: absolute; inset: 35px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
  animation: ringBreath 5s ease-in-out infinite;
}
@keyframes ringBreath { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.02);opacity:1} }
.club-title {
  position: relative; z-index: 1;
  font-family: var(--fd); font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 300; line-height: 0.88; letter-spacing: -0.03em;
}
.club-gold { color: var(--gold); font-style: italic; }
.club-subtitle {
  position: relative; z-index: 1; margin-top: 2rem;
  font-family: var(--fd); font-size: 1.1rem; font-style: italic; color: var(--t2);
}

.club-features { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--g1); }
.club-card {
  padding: 3rem 2.25rem; border-right: 1px solid var(--g1);
  position: relative; overflow: hidden; transition: background .3s;
}
.club-card:last-child { border-right: none; }
.club-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--e1);
}
.club-card:hover { background: var(--s2); }
.club-card:hover::after { transform: scaleX(1); }
.club-card-icon { font-size: 1.35rem; color: var(--gold); opacity: 0.45; margin-bottom: 1.5rem; transition: opacity .2s; }
.club-card:hover .club-card-icon { opacity: 1; }
.club-card h3 { font-family: var(--fh); font-size: 0.95rem; margin-bottom: 0.85rem; }
.club-card p { font-size: 0.8rem; color: var(--t2); line-height: 1.8; }

.club-cta {
  text-align: center; padding: var(--py) var(--px);
  border-top: 1px solid var(--g1); background: var(--s2);
}
.club-cta h2 { font-family: var(--fd); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 0.75rem; }
.club-cta p { color: var(--t2); margin-bottom: 2.5rem; font-size: 0.85rem; }
.club-cta-btn {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--void);
  font-family: var(--fh); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em;
  padding: 1rem 2.5rem; border-radius: 100px;
  transition: all .22s var(--e2);
}
.club-cta-btn:hover { background: var(--gold-hi); transform: translateY(-2px); box-shadow: 0 8px 32px var(--gold-glow); }

/* ════════════════════ CONSULTING TAB ════════════════════ */
#tab-consulting { background: var(--s1); }
.cons-hero {
  position: relative; overflow: hidden; min-height: 82vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--py) + 2rem) var(--px) var(--py);
  background: var(--s2);
}
.cons-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 75% at 90% 25%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.cons-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.75rem;
}
.cons-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.cons-title {
  font-family: var(--fd); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 300;
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.cons-title em { color: var(--gold); font-style: italic; }
.cons-subtitle { font-size: 0.88rem; color: var(--t2); max-width: 520px; line-height: 1.85; margin-bottom: 2.5rem; }
.cons-hero-cta { display: flex; gap: 1rem; }
.cons-primary-btn {
  background: var(--gold); color: var(--void);
  font-family: var(--fh); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em;
  padding: 0.9rem 2.25rem; border-radius: 100px;
  transition: all .22s var(--e2);
}
.cons-primary-btn:hover { background: var(--gold-hi); transform: translateY(-2px); box-shadow: 0 6px 28px var(--gold-glow); }
.cons-secondary-btn {
  border: 1px solid var(--g1); color: var(--t2);
  font-family: var(--fh); font-size: 0.78rem; letter-spacing: 0.08em;
  padding: 0.9rem 2.25rem; border-radius: 100px;
  transition: all .22s;
}
.cons-secondary-btn:hover { border-color: var(--gold-ring); color: var(--gold); }

.cons-section { padding: var(--py) var(--px); }
.cons-section + .cons-section { padding-top: 0; }
.cons-section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem;
}
.cons-section-label::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.cons-services-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--g1); border-radius: 10px; overflow: hidden; }
.cons-service-card {
  padding: 2.25rem 2rem; border-right: 1px solid var(--g1); border-bottom: 1px solid var(--g1);
  transition: background .3s;
}
.cons-service-card:nth-child(3n) { border-right: none; }
.cons-service-card:nth-child(n+4) { border-bottom: none; }
.cons-service-card:hover { background: var(--s2); }
.cons-service-icon { font-size: 1.15rem; color: var(--gold); opacity: 0.4; margin-bottom: 1.15rem; transition: opacity .2s; }
.cons-service-card:hover .cons-service-icon { opacity: 1; }
.cons-service-card h3 { font-family: var(--fh); font-size: 0.92rem; margin-bottom: 0.7rem; }
.cons-service-card p { font-size: 0.8rem; color: var(--t2); line-height: 1.78; margin-bottom: 1.1rem; }
.cons-service-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.cons-service-tags span { border: 1px solid var(--g1); border-radius: 3px; font-size: 0.62rem; padding: 0.15rem 0.48rem; color: var(--t3); }

.cons-process-section { background: var(--s2); }
.cons-process-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: start; }
.cons-step { padding: 1.5rem; }
.cons-step-num { font-family: var(--fd); font-size: 3rem; color: var(--gold); opacity: 0.22; line-height: 1; margin-bottom: 0.85rem; }
.cons-step h4 { font-family: var(--fh); font-size: 0.88rem; margin-bottom: 0.5rem; }
.cons-step p { font-size: 0.78rem; color: var(--t2); line-height: 1.72; }
.cons-step-arrow { color: var(--gold); opacity: 0.25; font-size: 1.1rem; padding-top: 3.5rem; }

.cons-stack-section { background: var(--s1); }
.cons-stack-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.65rem; }
.cons-stack-item {
  background: var(--s2); border: 1px solid var(--g1); border-radius: 7px;
  padding: 0.8rem 1rem; font-size: 0.76rem; color: var(--t2);
  display: flex; align-items: center; gap: 0.6rem; transition: all .2s;
}
.cons-stack-item:hover { border-color: var(--gold-ring); color: var(--t1); }
.stack-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; opacity: 0.5; flex-shrink: 0; }

.cons-form-section { background: var(--s2); border-top: 1px solid var(--g1); }
.cons-form-layout { display: grid; grid-template-columns: 280px 1fr; gap: 5rem; }
.cons-form-info h2 { font-family: var(--fd); font-size: 1.85rem; font-weight: 400; line-height: 1.15; margin-bottom: 0.85rem; }
.cons-form-info > p { font-size: 0.82rem; color: var(--t2); line-height: 1.8; margin-bottom: 2.5rem; }
.cons-contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.cons-contact-item { display: flex; flex-direction: column; gap: 0.28rem; }
.cons-contact-label { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--t4); }
.cons-contact-item a { color: var(--gold); font-size: 0.82rem; }
.cons-contact-item a:hover { opacity: 0.75; }
.cons-contact-item span { font-size: 0.82rem; color: var(--t2); }

.cons-form-box { background: var(--s3); border: 1px solid var(--g1); border-radius: 12px; padding: 2.25rem; }
.cons-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cons-form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.cons-form-group label { font-size: 0.65rem; letter-spacing: 0.08em; color: var(--t3); }
.req { color: var(--gold); }
.cons-form-group input, .cons-form-group select, .cons-form-group textarea {
  background: var(--s1); border: 1px solid var(--g1); border-radius: 7px;
  color: var(--t1); font-family: var(--fu); font-size: 0.82rem;
  padding: 0.68rem 0.9rem; outline: none; resize: vertical;
  transition: border-color .2s;
}
.cons-form-group input:focus,.cons-form-group select:focus,.cons-form-group textarea:focus { border-color: var(--gold-ring); }
.cons-form-group select option { background: var(--s2); }
.cons-timeline-options { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.timeline-opt {
  display: flex; align-items: center; gap: 0.4rem; font-size: 0.76rem; color: var(--t2);
  border: 1px solid var(--g1); border-radius: 100px; padding: 0.38rem 0.95rem; cursor: none;
  transition: all .2s;
}
.timeline-opt:has(input:checked) { border-color: var(--gold-ring); color: var(--gold); background: var(--gold-lo); }
.timeline-opt input { display: none; }
.cons-form-error { background: rgba(232,114,114,.08); border: 1px solid rgba(232,114,114,.22); border-radius: 7px; color: var(--red); font-size: 0.76rem; padding: 0.72rem 1rem; margin-bottom: 1rem; }
.cons-submit-btn {
  width: 100%; background: var(--gold); color: var(--void);
  font-family: var(--fh); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em;
  padding: 1rem; border-radius: 100px; border: none; cursor: none;
  transition: all .22s var(--e2);
}
.cons-submit-btn:hover:not(:disabled) { background: var(--gold-hi); box-shadow: 0 4px 24px var(--gold-glow); }
.cons-submit-btn:disabled { opacity: 0.42; }
.cons-success-box {
  background: var(--s3); border: 1px solid rgba(78,201,138,.2); border-radius: 12px;
  padding: 4rem 2rem; text-align: center;
}
.cons-success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(78,201,138,.1); border: 1px solid rgba(78,201,138,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--green); margin: 0 auto 1.5rem;
}
.cons-success-box h3 { font-family: var(--fh); font-size: 1.1rem; margin-bottom: 0.75rem; }
.cons-success-box p { font-size: 0.82rem; color: var(--t2); line-height: 1.7; }

/* ════════════════════ LIGHTBOX ════════════════════ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 1000; cursor: none;
  background: rgba(5,5,8,0.97); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
.lightbox-overlay.open { display: flex; animation: lbIn .35s var(--e1) both; }
@keyframes lbIn { from{opacity:0} to{opacity:1} }
.lightbox-inner {
  display: grid; grid-template-columns: 1fr 370px;
  width: 100%; max-width: 1050px; max-height: 88vh;
  background: var(--s2); border: 1px solid var(--g1); border-radius: 14px; overflow: hidden;
  animation: lbScale .45s var(--e1) both;
}
@keyframes lbScale { from{transform:scale(0.96) translateY(10px)} to{transform:none} }
.lb-close {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 10;
  width: 32px; height: 32px; border-radius: 50%; background: var(--g1);
  color: var(--t2); font-size: 0.78rem; display: flex; align-items: center; justify-content: center;
  cursor: none; transition: background .15s, color .15s;
}
.lb-close:hover { background: var(--g2); color: var(--t1); }
.lb-image-wrap { background: var(--s1); display: flex; align-items: center; overflow: hidden; }
.lb-image-wrap img { width: 100%; height: 100%; object-fit: contain; }
.lb-panel { padding: 2.25rem; overflow-y: auto; border-left: 1px solid var(--g1); display: flex; flex-direction: column; }
.lb-cat { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.lb-title { font-family: var(--fd); font-size: 1.75rem; font-weight: 400; line-height: 1.1; margin-bottom: 0.75rem; }
.lb-desc { font-size: 0.8rem; color: var(--t2); line-height: 1.75; margin-bottom: 1.75rem; flex: 1; }
.lb-licenses { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.lb-license-row {
  border: 1px solid var(--g1); border-radius: 8px;
  padding: 0.95rem 1.1rem; cursor: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: all .2s;
}
.lb-license-row:hover { border-color: var(--gold-ring); background: var(--s3); }
.lb-license-row.selected { border-color: var(--gold); background: var(--gold-lo); }
.lb-lic-label { font-size: 0.82rem; font-weight: 500; }
.lb-lic-desc { font-size: 0.68rem; color: var(--t3); margin-top: 0.18rem; }
.lb-lic-price { font-family: var(--fd); font-size: 1.2rem; color: var(--gold); }
.lb-total-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; color: var(--t3); padding: 1rem 0; border-top: 1px solid var(--g1); }
#lb-total { font-family: var(--fd); font-size: 1.35rem; color: var(--t1); }
.lb-add-btn {
  width: 100%; background: var(--gold); color: var(--void);
  font-family: var(--fh); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em;
  padding: 0.95rem; border-radius: 100px; border: none; cursor: none; margin-top: 1rem;
  transition: all .22s var(--e2);
}
.lb-add-btn:hover { background: var(--gold-hi); box-shadow: 0 4px 20px var(--gold-glow); }

/* ════════════════════ CART DRAWER ════════════════════ */
.cart-drawer {
  position: fixed; right: -420px; top: 0; bottom: 0; width: 400px; z-index: 500;
  background: var(--s2); border-left: 1px solid var(--g1);
  display: flex; flex-direction: column;
  transition: right .5s var(--e1);
}
.cart-drawer.open { right: 0; }
.cart-overlay { position: fixed; inset: 0; z-index: 499; background: rgba(5,5,8,0.55); backdrop-filter: blur(4px); display: none; }
.cart-overlay.open { display: block; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid var(--g1); }
.cart-header h3 { font-family: var(--fh); font-size: 0.9rem; letter-spacing: 0.04em; }
.cart-header button { color: var(--t3); font-size: 1rem; cursor: none; transition: color .15s; }
.cart-header button:hover { color: var(--t1); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--t4); font-size: 0.8rem; }
.cart-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--g1); }
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 54px; height: 54px; object-fit: cover; border-radius: 5px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-title { font-size: 0.82rem; margin-bottom: 0.2rem; }
.cart-item-license { font-size: 0.65rem; color: var(--t3); text-transform: capitalize; letter-spacing: 0.05em; }
.cart-item-price { font-family: var(--fd); font-size: 1.1rem; color: var(--gold); margin-top: 0.28rem; }
.cart-item-remove { color: var(--t4); font-size: 0.7rem; cursor: none; transition: color .15s; padding-top: 2px; }
.cart-item-remove:hover { color: var(--red); }
.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--g1); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cart-total-row span:first-child { font-size: 0.7rem; color: var(--t3); letter-spacing: 0.1em; }
#cartTotal { font-family: var(--fd); font-size: 1.5rem; color: var(--gold); }
.cart-checkout-btn { width: 100%; background: var(--gold); color: var(--void); font-family: var(--fh); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; padding: 1rem; border-radius: 100px; border: none; cursor: none; transition: all .22s; }
.cart-checkout-btn:hover { background: var(--gold-hi); box-shadow: 0 4px 20px var(--gold-glow); }

/* Cart FAB */
.cart-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 400;
  background: var(--gold); color: var(--void); font-family: var(--fh); font-weight: 700; font-size: 0.78rem;
  padding: 0.8rem 1.5rem; border-radius: 100px; border: none; cursor: none;
  box-shadow: 0 4px 24px var(--gold-glow);
  animation: fabIn .4s var(--e3) both;
  transition: all .22s var(--e2);
}
@keyframes fabIn { from{transform:scale(0.7);opacity:0} to{transform:scale(1);opacity:1} }
.cart-fab:hover { transform: translateY(-3px); box-shadow: 0 8px 32px var(--gold-glow); }

/* Checkout Modal */
.checkout-modal-overlay { position: fixed; inset: 0; z-index: 600; background: rgba(5,5,8,0.9); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.checkout-modal { background: var(--s2); border: 1px solid var(--g1); border-radius: 14px; padding: 2.5rem; width: 100%; max-width: 450px; position: relative; animation: lbScale .35s var(--e1) both; }
.checkout-close { position: absolute; top: 1rem; right: 1rem; color: var(--t3); font-size: 1rem; cursor: none; }
.checkout-modal h2 { font-family: var(--fd); font-size: 1.85rem; font-weight: 400; margin-bottom: 1.75rem; }
.checkout-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.checkout-form label { display: flex; flex-direction: column; gap: 0.38rem; font-size: 0.65rem; color: var(--t3); letter-spacing: 0.08em; }
.checkout-form input { background: var(--s3); border: 1px solid var(--g1); border-radius: 7px; color: var(--t1); font-family: var(--fu); font-size: 0.82rem; padding: 0.7rem 0.9rem; outline: none; transition: border-color .2s; }
.checkout-form input:focus { border-color: var(--gold-ring); }
.checkout-summary { border-top: 1px solid var(--g1); padding-top: 1rem; margin-bottom: 1.5rem; }
.checkout-summary-item { display: flex; justify-content: space-between; font-size: 0.76rem; padding: 0.4rem 0; color: var(--t2); }
.checkout-summary-total { display: flex; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid var(--g1); margin-top: 0.75rem; }
.checkout-summary-total strong:last-child { font-family: var(--fd); font-size: 1.25rem; color: var(--gold); font-weight: 400; }
.checkout-submit-btn { width: 100%; background: var(--gold); color: var(--void); font-family: var(--fh); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; padding: 1rem; border-radius: 100px; border: none; cursor: none; transition: all .22s; }
.checkout-submit-btn:hover { background: var(--gold-hi); box-shadow: 0 4px 20px var(--gold-glow); }
.checkout-msg { margin-top: 0.75rem; font-size: 0.76rem; color: var(--green); text-align: center; }

/* ════════════════════ SHOP PAGE ════════════════════ */
.shop-hero { padding: calc(var(--py) + 2rem) var(--px) var(--py); background: var(--s2); border-bottom: 1px solid var(--g1); position: relative; overflow: hidden; }
.shop-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(201,168,76,0.03) 0%, transparent 65%); }
.shop-hero-title { font-family: var(--fd); font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; line-height: 0.95; margin-bottom: 1rem; letter-spacing: -0.02em; }
.shop-hero-sub { font-size: 0.85rem; color: var(--t2); max-width: 460px; line-height: 1.85; margin-bottom: 2.5rem; }
.shop-stats { display: flex; gap: 3rem; }
.stat-item { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num { font-family: var(--fd); font-size: 2.5rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.62rem; color: var(--t4); letter-spacing: 0.14em; text-transform: uppercase; }

.shop-search-bar { padding: 1.35rem var(--px); border-bottom: 1px solid var(--g1); }
.shop-search-bar form { display: flex; gap: 0.75rem; max-width: 540px; }
.shop-search-input { flex: 1; background: var(--s3); border: 1px solid var(--g1); border-radius: 8px; color: var(--t1); font-family: var(--fu); font-size: 0.82rem; padding: 0.62rem 1rem; outline: none; transition: border-color .2s; }
.shop-search-input:focus { border-color: var(--gold-ring); }
.shop-search-input::placeholder { color: var(--t4); }
.shop-search-btn { background: var(--gold); color: var(--void); font-family: var(--fh); font-weight: 700; font-size: 0.76rem; padding: 0.62rem 1.25rem; border-radius: 8px; border: none; cursor: none; transition: all .2s; }
.shop-search-btn:hover { background: var(--gold-hi); }
.shop-clear-btn { font-size: 0.72rem; color: var(--t3); align-self: center; cursor: none; transition: color .15s; }
.shop-clear-btn:hover { color: var(--gold); }

.shop-filter-bar { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem var(--px); border-bottom: 1px solid var(--g1); flex-wrap: wrap; gap: 0.75rem; }
.cat-filters { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.cat-filter-link { font-size: 0.68rem; padding: 0.32rem 0.82rem; border-radius: 100px; border: 1px solid transparent; color: var(--t3); letter-spacing: 0.04em; transition: all .2s; }
.cat-filter-link:hover { color: var(--t1); border-color: var(--g1); }
.cat-filter-link.active { border-color: var(--gold-ring); background: var(--gold-lo); color: var(--gold); }
.sort-and-view { display: flex; align-items: center; gap: 0.75rem; }
.sort-select { background: var(--s3); border: 1px solid var(--g1); border-radius: 6px; color: var(--t2); font-family: var(--fu); font-size: 0.72rem; padding: 0.35rem 0.72rem; }
.view-btn { background: var(--s3); border: 1px solid var(--g1); border-radius: 6px; color: var(--t3); font-size: 1rem; padding: 0.32rem 0.58rem; cursor: none; transition: all .2s; }
.view-btn.active, .view-btn:hover { border-color: var(--gold-ring); color: var(--gold); }
.shop-results-count { padding: 0.75rem var(--px); font-size: 0.68rem; color: var(--t4); letter-spacing: 0.06em; }
.shop-grid { padding: 2rem var(--px) var(--py); }
.shop-grid.grid-view { columns: 3; column-gap: 1rem; }
.shop-grid.list-view { columns: 1; }

.shop-photo-card {
  break-inside: avoid; margin-bottom: 1rem; background: var(--s2);
  border: 1px solid var(--g1); border-radius: 10px; overflow: hidden; position: relative;
  transition: all .35s var(--e2);
}
.shop-photo-card:hover { border-color: var(--gold-ring); transform: translateY(-3px); box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1); }
.shop-photo-card.featured { border-color: rgba(201,168,76,0.18); }
.featured-badge { position: absolute; top: 0.65rem; left: 0.65rem; z-index: 2; background: var(--gold); color: var(--void); font-family: var(--fh); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.12em; padding: 0.18rem 0.5rem; border-radius: 100px; }
.shop-card-img { position: relative; overflow: hidden; cursor: none; aspect-ratio: 4/3; }
.list-view .shop-card-img { aspect-ratio: 21/7; }
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--e2), filter .3s; filter: saturate(0.82); }
.shop-photo-card:hover .shop-card-img img { transform: scale(1.05); filter: saturate(1.08); }
.shop-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,8,0.9) 0%, transparent 55%); opacity: 0; transition: opacity .3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.15rem; }
.shop-photo-card:hover .shop-card-overlay { opacity: 1; }
.sc-title { font-family: var(--fh); font-size: 0.85rem; }
.sc-cat { font-size: 0.62rem; color: var(--t3); margin-top: 0.2rem; }
.sc-price { font-family: var(--fd); font-size: 1.1rem; color: var(--gold); margin-top: 0.45rem; }
.shop-card-body { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 1rem; }
.shop-card-info h4 { font-size: 0.8rem; margin-bottom: 0.12rem; }
.shop-card-info p { font-size: 0.62rem; color: var(--t4); letter-spacing: 0.04em; }
.shop-card-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 0.42rem; }
.shop-card-price { font-family: var(--fd); font-size: 1.05rem; color: var(--gold); }
.quick-add-btn { background: var(--s4); border: 1px solid var(--g1); color: var(--t3); font-size: 0.65rem; padding: 0.28rem 0.62rem; border-radius: 100px; cursor: none; transition: all .2s; }
.quick-add-btn:hover { border-color: var(--gold-ring); color: var(--gold); }
.shop-empty { text-align: center; padding: 6rem; color: var(--t4); }
.shop-empty a { color: var(--gold); }

.stock-banner { border-top: 1px solid var(--g1); padding: 3rem var(--px); text-align: center; background: var(--s2); }
.stock-banner p { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t4); margin-bottom: 1.25rem; }
.stock-links { display: flex; gap: 1.5rem; justify-content: center; }
.stock-link { border: 1px solid var(--gold-ring); color: var(--gold); font-family: var(--fh); font-weight: 600; font-size: 0.76rem; padding: 0.58rem 1.75rem; border-radius: 100px; transition: all .2s; }
.stock-link:hover { background: var(--gold-lo); transform: translateY(-1px); }

/* Footer */
.site-footer { border-top: 1px solid var(--g1); padding: 2rem var(--px); }
.footer-inner { display: flex; gap: 1.25rem; align-items: center; font-size: 0.68rem; color: var(--t4); }
.footer-inner a { color: var(--gold); }

/* Toast */
#toastContainer { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 9997; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; pointer-events: none; }
.toast { background: var(--s4); border: 1px solid var(--g1); border-radius: 100px; color: var(--t1); font-size: 0.75rem; padding: 0.6rem 1.5rem; opacity: 0; transform: translateY(10px) scale(0.94); transition: all .35s var(--e1); white-space: nowrap; }
.toast.show { opacity: 1; transform: translateY(0) scale(1); }

/* ── Reveal animation ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--e1), transform .7s var(--e1); }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .resume-hero { grid-template-columns: 1fr; }
  .resume-hero::after { display: none; }
  .resume-hero-meta { position: static; flex-direction: row; flex-wrap: wrap; gap: 1.5rem 3rem; margin-top: 2rem; }
  .resume-grid { grid-template-columns: 1fr; gap: 0; }
  .software-grid { grid-template-columns: 1fr 1fr; }
  .software-card:last-child { grid-column: 1/-1; border-right: none; }
  .club-features { grid-template-columns: repeat(2,1fr); }
  .cons-services-grid { grid-template-columns: repeat(2,1fr); }
  .cons-form-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .cons-stack-grid { grid-template-columns: repeat(2,1fr); }
  .cons-process-steps { grid-template-columns: 1fr; }
  .cons-step-arrow { display: none; }
  .photo-masonry { columns: 2; }
  .ig-grid { columns: 3; }
  .shop-grid.grid-view { columns: 2; }
  .lightbox-inner { grid-template-columns: 1fr; grid-template-rows: 55vh auto; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  button, a { cursor: pointer; }
  .nav-tabs .nav-tab { font-size: 0.62rem; padding: 0.4rem 0.6rem; }
  .software-grid { grid-template-columns: 1fr; }
  .club-features { grid-template-columns: 1fr; }
  .cons-services-grid { grid-template-columns: 1fr; }
  .photo-masonry { columns: 1; }
  .ig-grid { columns: 2; }
  .shop-grid.grid-view { columns: 1; }
  .photo-hero-bg { grid-template-columns: repeat(2,1fr); }
  .resume-name { font-size: clamp(4rem, 18vw, 7rem); }
}
@media (max-width: 500px) {
  .nav-tabs { display: none; }
  .nav-shop-btn { margin-left: auto; }
}
