:root {
  --ink: #0a0a0a;
  --cream: #f5f0e8;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --rust: #c4522a;
  --sage: #4a6741;
  --slate: #1e2a38;
  --smoke: #8a8a8a;
  --border: rgba(201,168,76,0.25);
  --card-bg: rgba(255,255,255,0.04);
  --glass: rgba(255,255,255,0.06);
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: cubic-bezier(0.23, 1, 0.32, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s;
  mix-blend-mode: difference;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.cursor-trail {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.15s var(--transition);
  opacity: 0.5;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.page { display: none; min-height: 100vh; }
.page.active { display: block; }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.3s;
}
.nav-logo span { color: var(--cream); }
.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; transition: color 0.3s; cursor: pointer;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--ink);
  padding: 0.6rem 1.6rem; border: none;
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
#hero {
  height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #0a0a0a;
}
.hero-bg-slideshow {
  position: absolute; inset: 0; z-index: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1);
  animation: none;
  /* GPU layer — prevents freeze during Ken Burns */
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-in-out forwards;
}
.hero-slide.fade-out {
  opacity: 0;
  transition: opacity 1.2s ease;
}
@keyframes kenBurns {
  0%   { transform: scale3d(1.08,1.08,1) translate3d(0,0,0); }
  100% { transform: scale3d(1.0,1.0,1)  translate3d(-1%,-0.5%,0); }
}
@keyframes kenBurns2 {
  0%   { transform: scale3d(1.0,1.0,1) translate3d(0,0,0); }
  100% { transform: scale3d(1.08,1.08,1) translate3d(1%,0.5%,0); }
}
@keyframes kenBurns3 {
  0%   { transform: scale3d(1.06,1.06,1) translate3d(1%,0,0); }
  100% { transform: scale3d(1.0,1.0,1)  translate3d(0,1%,0); }
}
.hero-overlay-dark {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.52);
}
.hero-overlay-gradient {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.70) 0%,  rgba(0,0,0,0.08) 55%, rgba(0,0,0,0.25) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.45) 0%,  rgba(0,0,0,0)    40%, rgba(0,0,0,0.75) 100%);
}
.hero-overlay-dark::before,
.hero-overlay-dark::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 80px;
  background: rgba(0,0,0,0.75);
}
.hero-overlay-dark::before { top: 0; }
.hero-overlay-dark::after  { bottom: 0; }
.hero-accent-line {
  position: absolute; left: 0; right: 0;
  height: 2px; z-index: 5;
  background: linear-gradient(to right, transparent 0%, rgba(201,168,76,0.7) 30%, rgba(201,168,76,0.7) 70%, transparent 100%);
}
.hero-accent-line.top    { top: 72px; }
.hero-accent-line.bottom { bottom: 0; }
.hero-slide-counter {
  position: absolute; bottom: 2.5rem; left: 3rem;
  z-index: 6;
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 3px; color: rgba(255,255,255,0.5);
}
.slide-num { color: var(--gold); font-size: 1.1rem; }
.slide-divider {
  width: 30px; height: 1px;
  background: rgba(255,255,255,0.3);
  display: inline-block;
}
.hero-slide-dots {
  position: absolute; bottom: 2.5rem; right: 3rem;
  z-index: 6;
  display: flex; gap: 0.5rem; align-items: center;
}
.hsd-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hsd-dot.active {
  background: var(--gold);
  width: 22px; border-radius: 3px;
}
.hsd-dot:hover { background: rgba(201,168,76,0.6); }
.hero-grain {
  position: absolute; inset: 0; z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.55; pointer-events: none;
  transform: translateZ(0);
}
.hero-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  display: none;
}
#heroBgCanvas {
  display: none;
}
.hero-content {
  position: relative; z-index: 6; text-align: center;
  max-width: 1000px; padding: 0 2rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  animation: fadeUp 0.8s var(--transition) both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.9;
  letter-spacing: 4px;
  animation: fadeUp 0.8s 0.15s var(--transition) both;
}
.hero-title .accent { color: var(--gold); }
.hero-title .serif-word {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85em;
  letter-spacing: 0;
  color: var(--rust);
}
.hero-sub {
  max-width: 560px; margin: 2rem auto;
  font-size: 1rem; line-height: 1.7; color: #a0968a;
  font-weight: 300;
  animation: fadeUp 0.8s 0.3s var(--transition) both;
}
.hero-actions {
  display: flex; gap: 1.2rem; justify-content: center; align-items: center;
  animation: fadeUp 0.8s 0.45s var(--transition) both;
}
.btn-primary {
  background: var(--gold); color: var(--ink);
  padding: 0.9rem 2.5rem; border: none;
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light); transform: translateX(-100%);
  transition: transform 0.4s var(--transition);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-outline {
  background: transparent; color: var(--cream);
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(245,240,232,0.3);
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll { z-index: 6;
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--smoke);
  animation: fadeUp 1s 0.7s var(--transition) both;
}
.scroll-line {
  width: 1px; height: 50px; background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
.hero-floaters { /* z-index handled below */
  z-index: 5;
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.floater {
  position: absolute;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.07);
  /* backdrop-filter removed — major performance killer on mobile */
  font-size: 0.65rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--smoke);
  padding: 0.6rem 1rem;
  animation: float linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
.floater:nth-child(1) { top: 15%; left: 5%; animation-duration: 12s; animation-delay: 0s; }
.floater:nth-child(2) { top: 30%; right: 6%; animation-duration: 14s; animation-delay: -3s; }
.floater:nth-child(3) { bottom: 25%; left: 8%; animation-duration: 11s; animation-delay: -6s; }
.floater:nth-child(4) { bottom: 35%; right: 5%; animation-duration: 13s; animation-delay: -2s; }
.floater:nth-child(5) { top: 60%; left: 3%; animation-duration: 16s; animation-delay: -8s; }
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  33% { transform: translateY(-12px) rotate(0.5deg); }
  66% { transform: translateY(6px) rotate(-0.5deg); }
}
.stats-strip {
  background: var(--gold);
  display: flex; align-items: center; justify-content: space-around;
  padding: 1.4rem 3rem; overflow: hidden;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; letter-spacing: 2px; color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(10,10,10,0.6);
  font-weight: 600;
}
.stat-divider { width: 1px; height: 40px; background: rgba(10,10,10,0.2); }
section { padding: 7rem 3rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 2px; line-height: 1;
  margin-bottom: 1.5rem;
}
.section-title .serif {
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.85em; color: var(--gold); letter-spacing: 0;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 5rem;
  border: 1px solid var(--border);
}
.what-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  min-height: 300px;
  cursor: default;
}
.what-card::before {
  content: attr(data-num);
  position: absolute; top: 1rem; right: 1.2rem;
  font-family: var(--font-display); font-size: 4rem;
  color: rgba(201,168,76,0.08); line-height: 1;
  letter-spacing: 2px; z-index: 5; pointer-events: none;
}
.creators-section { background: var(--slate); }
.creators-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem;
}
.filter-tabs {
  display: flex; gap: 0.5rem;
}
.filter-tab {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  background: transparent; color: var(--smoke);
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}
.creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: transparent;
}
.creator-card {
  background: var(--slate);
  position: relative; overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  min-height: 320px;
}
.creator-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--transition);
  display: block;
}
.creator-card:hover .creator-card-img {
  transform: scale(1.04);
}
.creator-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(196,82,42,0.1));
  transition: transform 0.6s var(--transition);
}
.creator-card:hover .creator-card-img-placeholder { transform: scale(1.05); }
.creator-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.1) 50%, transparent 70%);
  transition: opacity 0.4s;
}
.creator-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.8rem 1.5rem;
  transform: translateY(0);
  transition: transform 0.4s var(--transition);
}
.creator-category {
  font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.creator-name {
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 2px;
  margin-bottom: 0.3rem;
}
.creator-location { font-size: 0.78rem; color: var(--smoke); }
.creator-tags {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  margin-top: 0.8rem;
  opacity: 0.85; transform: translateY(0);
  transition: all 0.4s 0.1s var(--transition);
}
.creator-card:hover .creator-tags { opacity: 1; transform: translateY(0); }
.tag {
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(201,168,76,0.4);
  font-size: 0.6rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold);
}
.creator-card:hover .creator-card-img-placeholder { transform: scale(1.05); }
.view-btn {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 40px; height: 40px;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.3s var(--transition);
}
.creator-card:hover .view-btn { opacity: 1; transform: scale(1) rotate(0); }
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 5rem;
  position: relative;
}
.how-steps::before {
  content: ''; position: absolute; top: 2.5rem; left: 12.5%; right: 12.5%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  z-index: 0;
}
.step {
  padding: 2rem; text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 50px; height: 50px;
  border: 1px solid var(--gold);
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display); font-size: 1.4rem; color: var(--gold);
  letter-spacing: 1px;
}
.step h4 {
  font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: 2px; margin-bottom: 0.7rem;
}
.step p { font-size: 0.82rem; color: var(--smoke); line-height: 1.6; font-weight: 300; }
.browse-section { background: #0f0f0f; }
.search-bar {
  display: flex; gap: 0; margin-top: 3rem;
  border: 1px solid var(--border);
  background: var(--glass); backdrop-filter: blur(10px);
}
.search-input {
  flex: 1; padding: 1rem 1.5rem;
  background: transparent; border: none; outline: none;
  color: var(--cream); font-family: var(--font-body); font-size: 0.9rem;
}
.search-input::placeholder { color: var(--smoke); }
.search-select {
  padding: 1rem 1.5rem;
  background: transparent; border: none; border-left: 1px solid var(--border);
  outline: none; color: var(--smoke);
  font-family: var(--font-body); font-size: 0.8rem;
  cursor: pointer;
  -webkit-appearance: none;
}
.search-select option { background: var(--ink); }
.search-btn {
  padding: 1rem 2rem;
  background: var(--gold); border: none;
  color: var(--ink); font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.3s;
}
.search-btn:hover { background: var(--gold-light); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem; margin-top: 3rem;
}
.cat-pill {
  padding: 0.8rem 1rem; text-align: center;
  border: 1px solid var(--border);
  background: var(--card-bg);
  cursor: pointer; transition: all 0.3s;
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 500;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}
.cat-icon { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }
.profile-hero {
  height: 50vh; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--slate) 0%, var(--ink) 100%);
  display: flex; align-items: flex-end;
  padding: 3rem;
}
.profile-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(201,168,76,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(196,82,42,0.08) 0%, transparent 40%);
}
.profile-hero-content {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; gap: 2.5rem; width: 100%;
}
.profile-avatar {
  width: 130px; height: 130px;
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(196,82,42,0.3));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; flex-shrink: 0;
  position: relative; bottom: -2rem;
}
.profile-hero-text { flex: 1; }
.profile-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gold); color: var(--ink);
  padding: 0.3rem 0.8rem;
  font-size: 0.65rem; letter-spacing: 2px; font-weight: 600;
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.profile-name {
  font-family: var(--font-display); font-size: 3.5rem;
  letter-spacing: 3px; line-height: 1;
}
.profile-title {
  color: var(--smoke); font-size: 0.9rem; margin-top: 0.4rem; font-weight: 300;
}
.profile-meta {
  display: flex; gap: 1.5rem; margin-top: 0.8rem;
}
.meta-item { font-size: 0.78rem; color: var(--smoke); display: flex; align-items: center; gap: 0.4rem; }
.meta-item span:first-child { color: var(--gold); }
.profile-body { padding: 4rem 3rem; }
.profile-layout { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; }
.profile-main {}
.profile-sidebar {}
.profile-section-title {
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 2px;
  margin-bottom: 1.5rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.bio-text { font-size: 0.9rem; line-height: 1.8; color: #c0b9ae; font-weight: 300; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin-top: 1.5rem;
}
.portfolio-item {
  aspect-ratio: 1; position: relative; overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(196,82,42,0.08));
}
.portfolio-thumb {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.4s var(--transition);
}
.portfolio-item > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s var(--transition);
  position: absolute; inset: 0;
}
.portfolio-item:hover > img { transform: scale(1.08); }
.portfolio-item:hover .portfolio-thumb { transform: scale(1.1); }
.portfolio-item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.85);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  gap: 0.4rem;
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-type {
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}
.services-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.service-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  background: var(--glass);
  transition: background 0.3s;
}
.service-item:hover { background: rgba(201,168,76,0.06); }
.service-name { font-size: 0.85rem; font-weight: 500; }
.service-price { color: var(--gold); font-size: 0.9rem; font-weight: 600; }
.sidebar-card {
  background: var(--glass); border: 1px solid var(--border);
  padding: 1.8rem; margin-bottom: 1.5rem;
}
.sidebar-title {
  font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 2px;
  margin-bottom: 1.2rem; color: var(--gold);
}
.contact-btn-big {
  width: 100%; padding: 1rem;
  background: var(--gold); color: var(--ink); border: none;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; margin-bottom: 0.8rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.contact-btn-big:hover { background: var(--gold-light); }
.contact-btn-outline {
  width: 100%; padding: 1rem;
  background: transparent; color: var(--cream); border: 1px solid var(--border);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.contact-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.social-links { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  color: rgba(255,255,255,0.55);
}
.social-link svg { display: block; flex-shrink: 0; }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.skills-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; }
.skill-tag {
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--border);
  font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--smoke); transition: all 0.3s; cursor: default;
}
.skill-tag:hover { border-color: var(--gold); color: var(--gold); }
.auth-page {
  min-height: 100vh; display: flex;
  background: var(--ink);
}
.auth-visual {
  width: 45%; position: relative; overflow: hidden;
  background: var(--slate);
}
.auth-visual-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196,82,42,0.15) 0%, transparent 40%);
}
.auth-visual-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3rem; text-align: center;
}
.auth-visual-icon { font-size: 5rem; margin-bottom: 2rem; }
.auth-visual-title {
  font-family: var(--font-display);
  font-size: 3rem; letter-spacing: 3px; margin-bottom: 1rem;
}
.auth-visual-sub {
  font-size: 0.85rem; color: var(--smoke); line-height: 1.7; font-weight: 300;
}
.auth-form-side {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 3rem;
}
.auth-form-side--full { width: 100%; }
.auth-form-wrap { width: 100%; max-width: 420px; }
.auth-title {
  font-family: var(--font-display); font-size: 2.8rem;
  letter-spacing: 3px; margin-bottom: 0.5rem;
}
.auth-sub { font-size: 0.85rem; color: var(--smoke); margin-bottom: 2.5rem; }
.login-cosmic-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, #0d0520 0%, #050010 40%, #000005 100%);
  padding: 80px 1rem 2rem;
}
.login-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.login-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none; z-index: 0;
  animation: loginOrbFloat 8s ease-in-out infinite;
}
.login-orb-1 { width:400px;height:400px; background:rgba(120,40,220,0.18); top:-100px; left:-100px; animation-delay:0s; }
.login-orb-2 { width:300px;height:300px; background:rgba(40,120,255,0.14); bottom:-80px; right:-60px; animation-delay:-3s; }
.login-orb-3 { width:250px;height:250px; background:rgba(220,80,120,0.12); top:40%; right:10%; animation-delay:-5s; }
@keyframes loginOrbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.08); }
}
.login-card {
  position: relative; z-index: 2;
  display: flex; width: 100%; max-width: 520px;
  min-height: 580px;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.06);
}
.login-left {
  width: 42%; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0e0525 0%, #1a0840 40%, #0a0320 100%);
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column;
}
.login-left-inner {
  position: relative; z-index: 2;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; height: 100%;
}
.login-brand {
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 3px;
  color: var(--gold); cursor: pointer; margin-bottom: auto;
}
.login-brand span { color: var(--cream); }
.login-planet-wrap {
  position: relative; width: 200px; height: 200px;
  margin: 1.5rem auto;
  animation: loginSystemSpin 20s linear infinite;
}
@keyframes loginSystemSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.login-planet {
  position: absolute; border-radius: 50%;
  box-shadow: 0 0 20px currentColor;
}
.lp-1 {
  width: 50px; height: 50px;
  background: radial-gradient(circle at 35% 35%, #6090ff, #1030a0);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  box-shadow: 0 0 30px rgba(60,120,255,0.5), 0 0 60px rgba(60,120,255,0.2);
}
.lp-2 {
  width: 22px; height: 22px;
  background: radial-gradient(circle at 35% 35%, #ff9040, #c05010);
  top: 10px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(255,120,40,0.7);
}
.lp-3 {
  width: 16px; height: 16px;
  background: radial-gradient(circle at 35% 35%, #a060ff, #6020c0);
  bottom: 20px; right: 15px;
  box-shadow: 0 0 10px rgba(160,80,255,0.7);
}
.lp-ring {
  position: absolute;
  width: 140px; height: 140px; border-radius: 50%;
  border: 1.5px solid rgba(100,180,255,0.15);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.login-star-field {
  position: absolute; inset: 0; border-radius: 50%;
}
.login-left-title {
  font-family: var(--font-display);
  font-size: 2.4rem; letter-spacing: 4px;
  line-height: 1.05; margin-bottom: 0.8rem;
}
.login-left-title span { color: var(--gold); }
.login-left-sub { font-size: 0.8rem; color: var(--smoke); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
.login-perks { display: flex; flex-direction: column; gap: 0.6rem; }
.login-perk {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.78rem; color: rgba(245,240,232,0.55);
}
.lp-icon { font-size: 1rem; }
.login-right {
  flex: 1; background: rgba(8,4,20,0.95);
  backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  padding: 2.5rem 2rem;
}
/* Role Selection Cards */
.role-select-card {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.04);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 4px;
}
.role-select-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateX(4px);
}
.role-select-icon {
  font-size: 2rem; flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.role-select-text { flex: 1; }
.role-select-title {
  font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: 1.5px; color: var(--cream); margin-bottom: 0.3rem;
}
.role-select-desc {
  font-size: 0.73rem; color: var(--smoke); line-height: 1.5;
}
.role-select-arrow {
  font-size: 1.2rem; color: var(--gold); opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}
.role-select-card:hover .role-select-arrow { opacity: 1; transform: translateX(4px); }
.login-form-inner { width: 100%; max-width: 360px; }
.login-form-header { margin-bottom: 1.8rem; }
.login-form-title {
  font-family: var(--font-display); font-size: 2rem;
  letter-spacing: 2px; margin-bottom: 0.3rem;
  background: linear-gradient(135deg, #fff 0%, #c9a84c 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.login-form-sub { font-size: 0.82rem; color: var(--smoke); }
.login-socials { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.4rem; }
.login-social-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; padding: 0.9rem 1.5rem; border-radius: 8px;
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  transition: all 0.25s; border: none; font-family: var(--font-body);
  letter-spacing: 0.3px; box-sizing: border-box;
}
.login-social-btn.google {
  background: #fff; color: #3c3c3c;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.login-social-btn.google:hover { background: #f5f5f5; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.login-social-btn.facebook {
  background: #1877F2; color: #fff;
  box-shadow: 0 2px 12px rgba(24,119,242,0.3);
}
.login-social-btn.facebook:hover { background: #1568d3; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(24,119,242,0.45); }
.login-divider {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.4rem;
}
.login-divider::before, .login-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08);
}
.login-divider span { font-size: 0.72rem; color: var(--smoke); white-space: nowrap; letter-spacing: 1px; }
.login-input-wrap { position: relative; }
.login-input-icon {
  position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%);
  font-size: 0.9rem; pointer-events: none; opacity: 0.45;
}
.login-input {
  padding-left: 2.5rem !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 8px !important;
  transition: all 0.25s !important;
}
.login-input:focus {
  border-color: rgba(201,168,76,0.6) !important;
  background: rgba(201,168,76,0.04) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08) !important;
}
.login-eye-btn {
  position: absolute; right: 0.8rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: 1rem; opacity: 0.4;
  transition: opacity 0.2s; padding: 0;
}
.login-eye-btn:hover { opacity: 0.8; }
.login-forgot-link { color: var(--gold); cursor: pointer; text-decoration: none; transition: opacity 0.2s; }
.login-forgot-link:hover { opacity: 0.75; }
.login-submit-btn {
  width: 100%; padding: 0.9rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: linear-gradient(135deg, #c9a84c 0%, #e8c97a 50%, #c9a84c 100%);
  background-size: 200% 100%; background-position: 0% 0%;
  color: #0a0a0a; border: none; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  transition: all 0.35s; box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.login-submit-btn:hover {
  background-position: 100% 0%;
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  transform: translateY(-1px);
}
.login-btn-arrow { font-size: 1.1rem; }
.login-back-btn {
  background: none; border: none; color: var(--smoke);
  font-size: 0.8rem; cursor: pointer; padding: 0;
  transition: color 0.2s; font-family: var(--font-body);
  letter-spacing: 0.5px;
}
.login-back-btn:hover { color: var(--cream); }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block; font-size: 0.68rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem; font-weight: 600;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--glass); border: 1px solid var(--border);
  color: var(--cream); font-family: var(--font-body); font-size: 0.88rem;
  outline: none; transition: border-color 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--smoke); }
.form-select { cursor: pointer; -webkit-appearance: none; }
.form-select option { background: var(--ink); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 1rem;
  background: var(--gold); color: var(--ink); border: none;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold-light); }
.form-footer {
  text-align: center; margin-top: 1.5rem;
  font-size: 0.82rem; color: var(--smoke);
}
.form-footer a { color: var(--gold); cursor: pointer; text-decoration: none; }
.form-footer a:hover { text-decoration: underline; }
.upload-zone {
  border: 2px dashed var(--border); padding: 2.5rem;
  text-align: center; cursor: pointer; transition: all 0.3s;
  background: var(--card-bg);
}
.upload-zone:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.upload-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.upload-text { font-size: 0.82rem; color: var(--smoke); line-height: 1.6; }
.upload-text strong { color: var(--gold); }
.social-input-row {
  display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.8rem;
}
.social-prefix {
  padding: 0.85rem 0.8rem;
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  border-right: none; font-size: 0.9rem; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  width: 45px; flex-shrink: 0;
}
.social-prefix + .form-input { border-left: none; }
.step-indicators {
  display: flex; gap: 0.5rem; margin-bottom: 2.5rem;
}
.step-dot {
  height: 3px; flex: 1; background: var(--border);
  transition: background 0.3s;
}
.step-dot.active { background: var(--gold); }
.dashboard-layout { display: flex; min-height: 100vh; }
.dashboard-sidebar {
  width: 260px; background: var(--slate);
  border-right: 1px solid var(--border);
  padding: 2rem 0; position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column;
}
.dash-logo {
  padding: 1rem 1.5rem 2rem;
  font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 3px; color: var(--gold);
}
.dash-user {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.dash-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--rust));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.dash-user-info {}
.dash-user-name { font-size: 0.85rem; font-weight: 600; }
.dash-user-role { font-size: 0.7rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }
.dash-nav { flex: 1; }
.dash-nav-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--smoke); cursor: pointer; transition: all 0.3s;
  border-left: 2px solid transparent;
}
.dash-nav-item:hover, .dash-nav-item.active {
  color: var(--gold); background: rgba(201,168,76,0.06);
  border-left-color: var(--gold);
}
.dash-nav-icon { font-size: 1rem; width: 20px; text-align: center; }
.dash-main { flex: 1; padding: 2.5rem; overflow-y: auto; }
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.5rem;
}
.dash-page-title { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 3px; }
.dash-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-bottom: 2.5rem;
}
.dash-stat {
  background: var(--glass); border: 1px solid var(--border);
  padding: 1.5rem; position: relative; overflow: hidden;
}
.dash-stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.dash-stat-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--smoke); margin-bottom: 0.5rem; }
.dash-stat-value { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 2px; color: var(--gold); }
.dash-stat-sub { font-size: 0.72rem; color: var(--smoke); margin-top: 0.3rem; }
.portfolio-manage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.portfolio-manage-item {
  position: relative; aspect-ratio: 4/3;
  background: var(--glass); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; cursor: pointer; overflow: hidden;
  transition: border-color 0.3s;
}
.portfolio-manage-item:hover { border-color: var(--gold); }
.portfolio-manage-item.add-new {
  border-style: dashed; flex-direction: column; gap: 0.5rem;
}
.portfolio-manage-item.add-new span { font-size: 0.72rem; color: var(--smoke); letter-spacing: 1px; text-transform: uppercase; }
.pm-actions {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.9);
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-manage-item:not(.add-new):hover .pm-actions { opacity: 1; }
.pm-btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; border: none;
}
.pm-btn.edit { background: var(--gold); color: var(--ink); }
.pm-btn.delete { background: transparent; border: 1px solid var(--rust); color: var(--rust); }
.contact-page { padding-top: 64px; }
.contact-hero {
  text-align: center; padding: 5rem 3rem 4rem;
  position: relative; overflow: hidden;
}
.contact-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.contact-info {
  padding: 4rem 3rem;
  border-right: 1px solid var(--border);
  background: var(--slate);
}
.contact-form-section { padding: 4rem 3rem; }
.info-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
}
.info-icon {
  width: 44px; height: 44px; background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: var(--gold);
}
.info-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.info-value { font-size: 0.88rem; font-weight: 400; }
.contact-social { display: flex; gap: 0.8rem; margin-top: 2rem; }
.contact-social-link {
  width: 44px; height: 44px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; color: rgba(255,255,255,0.55);
}
.contact-social-link svg { display: block; flex-shrink: 0; }
.contact-social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
footer {
  background: var(--slate);
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display); font-size: 2rem;
  letter-spacing: 3px; color: var(--gold); margin-bottom: 1rem;
}
.footer-desc { font-size: 0.82rem; color: var(--smoke); line-height: 1.7; font-weight: 300; }
.footer-col-title {
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem; font-weight: 600;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.82rem; color: var(--smoke); text-decoration: none;
  transition: color 0.3s; cursor: pointer;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.75rem; color: var(--smoke); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.72rem; color: var(--smoke); text-decoration: none; cursor: pointer; }
.footer-bottom-links a:hover { color: var(--gold); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--gold); color: var(--ink);
  padding: 1rem 1.5rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 1px;
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s var(--transition);
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.field-err {
  font-size: 0.72rem; color: var(--rust);
  margin-top: 0.4rem; min-height: 1rem;
  letter-spacing: 0.5px;
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: var(--rust) !important;
  background: rgba(196,82,42,0.05);
}
.form-input.ok, .form-select.ok, .form-textarea.ok {
  border-color: var(--sage) !important;
}
.cf-spinner {
  width: 48px; height: 48px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
#cf_submitBtn {
  position: relative; overflow: hidden;
  transition: all 0.3s, opacity 0.3s;
}
#cf_submitBtn:disabled {
  opacity: 0.6; cursor: not-allowed;
}
#cf_submitBtn:disabled::after { display: none; }
.summary-row {
  display: flex; gap: 0.8rem; margin-bottom: 0.6rem;
  font-size: 0.82rem;
}
.summary-label {
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); min-width: 70px; padding-top: 2px;
}
.summary-value { color: var(--cream); line-height: 1.5; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s var(--transition);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.nav-overlay.show { display: block; }
.nav-mobile-auth { display: none; }
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
  nav { padding: 1rem 1.5rem; }
  .nav-logo { font-size: 1.65rem; letter-spacing: 2.5px; }
  .nav-hamburger { display: flex; }
  .nav-desktop-auth { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--slate);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 0 2rem;
    z-index: 999;
    transition: right 0.35s var(--transition);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-auth {
    display: block;
    padding: 0.8rem 2rem;
    width: 100%;
  }
  section { padding: 4rem 1.2rem; }
  .creators-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .filter-tabs { flex-wrap: wrap; gap: 0.4rem; }
  .creators-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .profile-layout { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .auth-visual { display: none; }
  .auth-form-side { padding: 2rem; }
  .dashboard-layout { flex-direction: column; }
  .dashboard-sidebar { width: 100%; height: auto; position: static; }
  .stats-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 1rem;
  }
  .stat-divider { display: none; }
  .stat-item {
    padding: 1rem;
    border-right: 1px solid rgba(10,10,10,0.15);
    border-bottom: 1px solid rgba(10,10,10,0.15);
  }
  .hero-floaters { display: none; }
  .profile-hero { height: auto; padding: 2rem 1.2rem; }
  .profile-hero-content { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .profile-avatar { bottom: 0; width: 80px; height: 80px; font-size: 2rem; }
  .profile-name { font-size: 2.5rem; }
  .profile-meta { flex-wrap: wrap; gap: 0.8rem; }
  .profile-body { padding: 2rem 1.2rem; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .portfolio-manage-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page { padding-top: 60px; }
  .contact-hero { padding: 3rem 1.2rem 2rem; }
  .contact-info, .contact-form-section { padding: 2.5rem 1.2rem; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-grid { gap: 2rem; }
}
@media (max-width: 600px) {
  section { padding: 3rem 1rem; }
  nav { padding: 0.85rem 1rem; }
  .nav-logo { font-size: 1.5rem; letter-spacing: 2px; }
  .hero-title { font-size: clamp(3.2rem, 13vw, 5rem); }
  .hero-sub { font-size: 0.88rem; }
  .hero-actions { flex-direction: column; gap: 0.8rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; text-align: center; }
  .hero-scroll { display: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.6rem; }
  .section-title { font-size: clamp(2rem, 9vw, 3rem); }
  .creators-section { background: var(--slate); }
  .creators-header { flex-direction: column; align-items: flex-start; gap: 1.2rem; margin-bottom: 2rem; }
  .filter-tabs { flex-wrap: wrap; gap: 0.4rem; width: 100%; }
  .filter-tab { flex: 1; min-width: calc(50% - 0.2rem); font-size: 0.68rem; padding: 0.5rem 0.6rem; text-align: center; }
  .creators-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .creator-card { aspect-ratio: 3/4; }
  .creator-name { font-size: 1.1rem; }
  .creator-tags { display: none; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .cat-pill { padding: 0.6rem 0.5rem; font-size: 0.62rem; letter-spacing: 1px; }
  .cat-icon { font-size: 1.2rem; }
  .what-grid { grid-template-columns: 1fr; margin-top: 3rem; }
  .what-card { padding: 1.8rem; }
  .how-steps { grid-template-columns: 1fr; gap: 0; }
  .step { border-bottom: 1px solid var(--border); padding: 1.5rem; }
  .search-bar { flex-direction: column; }
  .search-select {
    border-left: none;
    border-top: 1px solid var(--border);
    width: 100%;
    padding: 0.9rem 1rem;
  }
  .search-btn { width: 100%; padding: 1rem; }
  .search-input { padding: 0.9rem 1rem; }
  .mission-banner-inner { padding: 3rem 1rem; }
  .profile-layout { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .services-list .service-item { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .auth-page { flex-direction: column; }
  .auth-form-side { padding: 1.5rem 1rem; }
  .auth-form-wrap { max-width: 100%; }
  .login-card { flex-direction: column; border-radius: 16px; }
  .login-left { width: 100%; min-height: auto; }
  .login-left-inner { padding: 1.5rem; }
  .login-planet-wrap { width: 120px; height: 120px; margin: 0.8rem auto; }
  .login-left-title { font-size: 1.6rem; }
  .login-left-sub { display: none; }
  .login-perks { display: none; }
  .login-right { padding: 1.5rem 1.2rem; }
  .login-cosmic-wrap { padding: 70px 0.8rem 2rem; }
  .login-orb-1 { width: 200px; height: 200px; }
  .login-orb-2 { width: 150px; height: 150px; }
  .login-orb-3 { width: 120px; height: 120px; }
  .dashboard-layout { flex-direction: column; }
  .dashboard-sidebar { width: 100%; position: static; height: auto; }
  .dash-stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .dash-main { padding: 1.5rem 1rem; }
  .portfolio-manage-grid { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 2.5rem 1rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .footer-logo { font-size: 1.6rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2rem 1rem;
  }
  .contact-form-section { padding: 2rem 1rem; }
  .contact-page { padding-top: 60px; }
  .contact-hero { padding: 2.5rem 1rem 2rem; }
  .contact-hero h2 { font-size: 2rem !important; }
  .profile-hero { padding: 1.5rem 1rem 2rem; }
  .profile-name { font-size: 2rem; }
  .profile-meta { gap: 0.5rem; flex-wrap: wrap; }
  .profile-body { padding: 1.5rem 1rem; }
  .sidebar-card { padding: 1.2rem; }
  .stats-strip { padding: 0.8rem; }
  .toast { left: 1rem; right: 1rem; bottom: 1rem; max-width: 100%; font-size: 0.78rem; }
  footer[style] {
    padding: 2rem 1rem !important;
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center !important;
  }
  footer[style] > div:last-child {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1rem !important;
  }
}
.login-social-btn img{
  width:20px;
  height:20px;
  object-fit:contain;
}
.upload-progress-wrap {
  width: 100%;
  padding: 0.8rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-top: 0.6rem;
}
.login-social-btn:disabled,
.login-submit-btn:disabled,
.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}
.step-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
  display: inline-block;
  margin: 0 4px;
}
.step-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}
.step-dot.done {
  background: var(--sage, #50c878);
}
.skill-meter-wrap { margin-bottom: 0.9rem; }
.skill-meter-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cream); margin-bottom: 0.35rem;
}
.skill-meter-pct { color: var(--gold); font-weight: 600; }
.skill-meter-track {
  height: 6px; background: rgba(255,255,255,0.08);
  border-radius: 0; overflow: hidden; position: relative;
}
.skill-meter-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  border-radius: 0;
  transition: width 1.2s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.skill-meter-bar::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 0;
  animation: skill-glow 2s ease-in-out infinite;
}
@keyframes skill-glow {
  0%,100% { opacity: 0.4; } 50% { opacity: 1; }
}
.ccv2-chat-btn {
  display: block; width: 100%;
  padding: 0.55rem 0;
  margin-top: 0.7rem;
  background: var(--gold); color: var(--ink);
  border: none; font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
  position: relative; z-index: 5;
}
.ccv2-chat-btn:hover { background: var(--gold-light); }
.chat-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.chat-modal {
  width: 100%; max-width: 480px;
  background: #111;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  max-height: 85vh;
  animation: slideUp 0.3s cubic-bezier(.16,1,.3,1);
}
@keyframes slideUp { from { transform:translateY(30px); opacity:0; } to { transform:translateY(0); opacity:1; } }
.chat-modal-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--slate);
}
.chat-modal-title { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 2px; color: var(--gold); }
.chat-modal-close {
  width: 32px; height: 32px;
  background: transparent; border: 1px solid var(--border);
  color: var(--cream); cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.chat-modal-close:hover { background: var(--rust); }
.chat-messages {
  flex: 1; overflow-y: auto;
  padding: 1.2rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  min-height: 260px; max-height: 340px;
  background: #0d0d0d;
}
.chat-msg {
  max-width: 80%; padding: 0.7rem 1rem;
  font-size: 0.83rem; line-height: 1.5;
  border-radius: 12px;
  animation: msgIn 0.2s ease;
}
@keyframes msgIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
.chat-msg-client {
  align-self: flex-start;
  background: var(--slate);
  border: 1px solid var(--border);
  color: var(--cream);
  border-radius: 12px 12px 12px 2px;
}
.chat-msg-creator {
  align-self: flex-end;
  background: var(--gold); color: var(--ink);
  font-weight: 500;
  border-radius: 12px 12px 2px 12px;
}
/* Public chat modal: visitor/client sends messages (RIGHT=gold), creator replies (LEFT=grey) */
#chatMessages .chat-msg-client {
  align-self: flex-end;
  background: var(--gold); color: var(--ink);
  font-weight: 500;
  border: none;
  border-radius: 12px 12px 2px 12px;
}
#chatMessages .chat-msg-creator {
  align-self: flex-start;
  background: var(--slate);
  border: 1px solid var(--border);
  color: var(--cream);
  font-weight: 400;
  border-radius: 12px 12px 12px 2px;
}
.chat-msg-system {
  align-self: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--smoke); font-size: 0.72rem; text-align: center;
  max-width: 100%; border-radius: 6px;
}
.chat-msg-time { font-size: 0.62rem; opacity: 0.5; margin-top: 0.3rem; }
.chat-input-row {
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--border);
  display: flex; gap: 0.6rem; align-items: center;
  background: var(--slate);
}
.chat-input-name {
  width: 100%; padding: 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); color: var(--cream);
  font-family: var(--font-body); font-size: 0.83rem;
  margin-bottom: 0.6rem;
}
.chat-input-name:focus { outline: none; border-color: var(--gold); }
.chat-input-box {
  flex: 1; padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); color: var(--cream);
  font-family: var(--font-body); font-size: 0.85rem;
  resize: none; height: 44px;
}
.chat-input-box:focus { outline: none; border-color: var(--gold); }
.chat-send-btn {
  padding: 0 1.2rem; height: 44px;
  background: var(--gold); color: var(--ink);
  border: none; font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; flex-shrink: 0; transition: background 0.2s;
}
.chat-send-btn:hover { background: var(--gold-light); }
.chat-name-step { padding: 0 1.2rem 0.6rem; background: var(--slate); }
.chat-unread-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--rust); color: #fff;
  font-size: 0.6rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.what-card-slider {
  position: absolute; inset: 0;
  display: flex;
  transition: transform 0.7s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.what-card-slide {
  min-width: 100%; height: 100%;
  position: relative; flex-shrink: 0;
  overflow: hidden;
}
.what-card-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.what-card-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 45%, transparent 70%);
  z-index: 1;
}
.what-card-creator-name {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 2px;
  color: #fff;
  border-top: 2px solid var(--gold);
  background: rgba(0,0,0,0.65);
  z-index: 3;
}
.what-card-content {
  position: absolute; top: 0; left: 0; right: 0; bottom: 52px;
  padding: 1.2rem 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  z-index: 3;
  pointer-events: none;
}
.what-card-content h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  letter-spacing: 2px; color: #fff; margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.what-card-content p {
  font-size: 0.75rem; color: rgba(255,255,255,0.7);
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.what-card-dots {
  position: absolute; bottom: 58px; right: 1rem;
  display: flex; gap: 5px; z-index: 5;
}
.what-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: background 0.3s, transform 0.3s;
}
.what-dot.active { background: var(--gold); transform: scale(1.3); }
.what-card-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  z-index: 5; opacity: 0; transition: opacity 0.3s;
  font-size: 1.1rem; font-weight: 300;
}
.what-card:hover .what-card-nav { opacity: 1; }
.what-card-nav-prev { left: 8px; }
.what-card-nav-next { right: 8px; }
.what-card-slide--empty {
  display: flex; align-items: center; justify-content: center;
}
.dash-analytics-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.dash-analytic-card {
  background: var(--glass); border: 1px solid var(--border);
  padding: 1.2rem; text-align: center;
  transition: border-color 0.3s;
}
.dash-analytic-card:hover { border-color: var(--gold); }
.dash-analytic-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.dash-analytic-val {
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: 2px;
  color: var(--gold);
}
.dash-analytic-label {
  font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--smoke); margin-top: 0.2rem;
}
.dash-analytic-trend {
  font-size: 0.7rem; margin-top: 0.4rem;
}
.trend-up { color: #6ee09a; }
.trend-neutral { color: var(--smoke); }
.messages-layout {
  display: grid; grid-template-columns: 300px 1fr;
  border: 1px solid var(--border);
  min-height: 500px;
}
.messages-sidebar {
  border-right: 1px solid var(--border);
  overflow-y: auto;
}
.messages-sidebar-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--smoke); display: flex; align-items: center; justify-content: space-between;
}
.msg-conv-item {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.msg-conv-item:hover,
.msg-conv-item.active { background: rgba(201,168,76,0.06); }
.msg-conv-item.unread { border-left: 3px solid var(--gold); }
.msg-conv-name { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.25rem; }
.msg-conv-preview { font-size: 0.72rem; color: var(--smoke); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 220px; }
.msg-conv-time { font-size: 0.6rem; color: var(--smoke); margin-top: 0.2rem; }
.msg-conv-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--rust); color: #fff;
  font-size: 0.6rem; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.messages-main {
  display: flex; flex-direction: column;
}
.messages-main-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--glass);
}
.messages-main-body {
  flex: 1; overflow-y: auto;
  padding: 1.2rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  min-height: 320px;
}
.messages-main-input {
  padding: 1rem;
  border-top: 1px solid var(--border);
  display: flex; gap: 0.6rem;
}
.messages-main-input textarea {
  flex: 1; resize: none; height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); color: var(--cream);
  font-family: var(--font-body); font-size: 0.85rem;
  padding: 0.6rem 0.8rem;
}
.messages-main-input textarea:focus { outline: none; border-color: var(--gold); }
#page-admin .admin-layout {
  display: grid; grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 72px);
}
.admin-sidebar {
  background: var(--slate); border-right: 1px solid var(--border);
  padding: 1.5rem 0;
}
.admin-sidebar-title {
  padding: 0 1.5rem 1.2rem;
  font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: 3px; color: var(--gold);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.8rem;
}
.admin-nav-item {
  padding: 0.75rem 1.5rem;
  cursor: pointer; font-size: 0.8rem; letter-spacing: 1px;
  transition: background 0.2s; display: flex; align-items: center; gap: 0.6rem;
}
.admin-nav-item:hover, .admin-nav-item.active {
  background: rgba(201,168,76,0.1); color: var(--gold);
}
.admin-main {
  padding: 2rem;
  background: var(--ink);
}
.admin-stats-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.admin-stat-card {
  background: var(--glass); border: 1px solid var(--border);
  padding: 1.5rem; text-align: center;
}
.admin-stat-val {
  font-family: var(--font-display); font-size: 2.5rem;
  letter-spacing: 2px; color: var(--gold);
}
.admin-stat-label {
  font-size: 0.62rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--smoke); margin-top: 0.3rem;
}
.admin-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.82rem;
}
.admin-table th {
  font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--border);
  padding: 0.8rem 1rem; text-align: left;
}
.admin-table td {
  padding: 0.9rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}
.admin-table tr:hover td { background: var(--glass); }
.admin-badge {
  display: inline-block; padding: 0.2rem 0.6rem;
  font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 2px;
}
.admin-badge-green { background: rgba(80,200,120,0.15); color: #6ee09a; border: 1px solid rgba(80,200,120,0.3); }
.admin-badge-yellow { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.admin-badge-red { background: rgba(196,82,42,0.15); color: #e07050; border: 1px solid rgba(196,82,42,0.3); }
.admin-action-btn {
  padding: 0.3rem 0.7rem; font-size: 0.68rem;
  border: 1px solid var(--border); background: transparent;
  color: var(--cream); cursor: pointer; margin-right: 0.3rem;
  transition: all 0.2s; letter-spacing: 1px;
}
.admin-action-btn:hover { border-color: var(--gold); color: var(--gold); }
.admin-action-btn.danger:hover { border-color: var(--rust); color: var(--rust); }
.notif-bell {
  position: relative; cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  font-size: 1rem;
  transition: border-color 0.2s;
}
.notif-bell:hover { border-color: var(--gold); }
.notif-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--rust); color: #fff;
  font-size: 0.55rem; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
}
.notif-dropdown {
  position: absolute; top: 48px; right: 0;
  width: 320px; background: #111;
  border: 1px solid var(--border);
  z-index: 2000; display: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.notif-dropdown.show { display: block; }
.notif-item {
  padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer; transition: background 0.2s; font-size: 0.8rem;
}
.notif-item:hover { background: var(--glass); }
.notif-item.unread { border-left: 3px solid var(--gold); }
.notif-item-title { font-weight: 600; margin-bottom: 0.2rem; }
.notif-item-body { color: var(--smoke); font-size: 0.75rem; }
.notif-item-time { font-size: 0.65rem; color: var(--smoke); margin-top: 0.3rem; }
.ccv2-skills { margin-top: 0.6rem; }
.ccv2-skill-bar {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.ccv2-skill-name { font-size: 0.6rem; color: rgba(255,255,255,0.6); min-width: 70px; letter-spacing: 1px; text-transform: uppercase; }
.ccv2-skill-track {
  flex: 1; height: 3px; background: rgba(255,255,255,0.1);
}
.ccv2-skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  transition: width 1s cubic-bezier(.16,1,.3,1);
}
.ccv2-skill-pct { font-size: 0.6rem; color: var(--gold); min-width: 28px; text-align: right; }
img[data-src] { opacity: 0; transition: opacity 0.4s; }
img.loaded { opacity: 1; }
.activity-log { display: flex; flex-direction: column; gap: 0.6rem; }
.activity-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.8rem 1rem; background: var(--glass); border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
}
.activity-icon { font-size: 1.2rem; flex-shrink: 0; }
.activity-text { flex: 1; color: var(--cream); }
.activity-time { font-size: 0.68rem; color: var(--smoke); }
@media (max-width: 768px) {
  .messages-layout { grid-template-columns: 1fr; }
  .messages-sidebar { border-right: none; border-bottom: 1px solid var(--border); max-height: 200px; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .dash-analytics-grid { grid-template-columns: repeat(2, 1fr); }
}
.clickable-slide {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.clickable-slide:hover .what-card-slide-overlay {
  background: linear-gradient(to top, rgba(201,168,76,0.35) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0) 100%);
}
.what-card-creator-name {
  display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap;
}
.nav-logo .logo-accent,
.login-brand span {
  color: var(--gold);
  font-style: normal;
}
.hero-slide-label {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  z-index: 7;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  border-right: 1px solid rgba(201,168,76,0.4);
  padding-right: 0.9rem;
  transition: opacity 0.5s ease, color 0.5s ease;
}
@media (max-width: 600px) {
  .hero-slide-counter { display: none; }
  .hero-scroll { display: none; }
  .hero-floaters { display: none !important; }
  .hero-slide-label { display: none; }
}
.role-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.role-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.8rem;
  user-select: none;
  background: var(--glass);
}
.role-check-item:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
}
.role-check-item input[type="checkbox"] {
  accent-color: var(--gold);
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.role-check-item:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
  color: var(--gold);
}
.role-check-item span { pointer-events: none; }
.profile-avatar {
  width: 160px !important;
  height: 160px !important;
  border: 4px solid var(--gold) !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(30,42,56,0.8)) !important;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.15), 0 16px 48px rgba(0,0,0,0.5) !important;
  flex-shrink: 0 !important;
  position: relative !important;
  bottom: -1rem !important;
}
.profile-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.profile-hero-content {
  gap: 2rem !important;
  align-items: flex-end !important;
}
@media (max-width: 768px) {
  .profile-avatar {
    width: 110px !important;
    height: 110px !important;
    bottom: 0 !important;
  }
  .role-checkboxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ANIMATED VISUAL SHOWCASE — Homepage */
.showcase-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  padding: 0;
  /* Contain paint to prevent layout recalculations */
  contain: layout style;
}
.showcase-strip {
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
  /* Promote to own layer */
  transform: translateZ(0);
}
.showcase-track {
  display: flex;
  gap: 12px;
  width: max-content;
  /* Force GPU layer — prevents CPU freeze */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@keyframes scrollLeft {
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}
@keyframes scrollRight {
  0%   { transform: translate3d(-50%,0,0); }
  100% { transform: translate3d(0,0,0); }
}
@keyframes scrollLeft3 {
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}
.showcase-track--left  { animation: scrollLeft  55s linear infinite; }
.showcase-track--right { animation: scrollRight 50s linear infinite; }
.showcase-track--left3 { animation: scrollLeft3 65s linear infinite; }
.showcase-wrap:hover .showcase-track { animation-play-state: paused; }
.showcase-item {
  flex-shrink: 0;
  width: clamp(180px, 20vw, 280px);
  height: clamp(120px, 14vw, 190px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  /* Remove transition — causes repaint on scroll */
  transition: border-color 0.3s;
  /* GPU layer per item */
  transform: translateZ(0);
}
.showcase-item:hover {
  transform: scale(1.04) translateZ(0);
  border-color: rgba(201,168,76,0.4);
  z-index: 2;
}
.showcase-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  /* Pointer events off for perf */
  pointer-events: none;
}
.showcase-tag {
  position: absolute;
  bottom: 0.5rem; left: 0.7rem;
  font-size: 0.62rem; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 500;
  pointer-events: none;
}
/* LOGIN LEFT PANEL — Photo grid */
.login-left-inner {
  position: relative; z-index: 2;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; height: 100%;
}
.login-visual-grid {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 8px;
  padding: 8px;
  overflow: hidden;
  z-index: 0;
}
.lv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.50) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.lv-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@keyframes lvScrollUp {
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(0,-50%,0); }
}
@keyframes lvScrollDown {
  0%   { transform: translate3d(0,-50%,0); }
  100% { transform: translate3d(0,0,0); }
}
.lv-col--up   { animation: lvScrollUp   22s linear infinite; }
.lv-col--down { animation: lvScrollDown 26s linear infinite; }
.lv-card {
  flex-shrink: 0;
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.07);
  transform: translateZ(0);
}
/* Keep login-left-inner content above grid */
.login-brand,
.login-left-title,
.login-left-sub,
.login-perks {
  position: relative;
  z-index: 2;
}
/* NEW PROFILE PAGE — LinkedIn-style redesign */
/* BACK BAR */
.prof-back-bar {
  position: sticky; top: 72px; z-index: 100;
  display: flex; align-items: center; gap: 1rem;
  padding: 0.7rem 2rem;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.prof-back-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: none; border: 1px solid var(--border);
  color: var(--cream); font-family: var(--font-body);
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.45rem 1rem; cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.prof-back-btn:hover { border-color: var(--gold); color: var(--gold); }
.prof-back-crumb { font-size: 0.7rem; color: var(--smoke); letter-spacing: 1px; }
/* IDENTITY BLOCK */
.prof-identity-block {
  padding: 4rem 3.5rem 3rem;
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left;
  background: linear-gradient(180deg, var(--slate) 0%, var(--ink) 100%);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.prof-identity-block::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(10,10,10,0.88) 70%, rgba(10,10,10,1) 100%);
  pointer-events: none;
  z-index: 0;
}
.prof-identity-block > * { position: relative; z-index: 1; }
.prof-left-col {
  display: flex; flex-direction: column; align-items: flex-start;
  width: 100%;
}
.prof-right-col { display: none; }
/* Studio Name */
.prof-studio-name {
  display: flex; align-items: center; justify-content: center; gap: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold);
  line-height: 1; margin-bottom: 0;
  position: relative;
  width: 100%; text-align: center;
}
.prof-studio-name::before { display: none; }
.prof-studio-name::after  { display: none; }
.prof-studio-icon { display: none; }
/* Photo ring */
.prof-photo-ring {
  position: relative; margin-bottom: 1.8rem; margin-top: 1.5rem;
}
.prof-photo-wrap {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(30,42,56,0.6));
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.08), 0 20px 60px rgba(0,0,0,0.5);
  transition: box-shadow 0.4s;
}
.prof-photo-wrap:hover {
  box-shadow: 0 0 0 8px rgba(201,168,76,0.15), 0 24px 70px rgba(0,0,0,0.6);
}
.prof-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
/* Name */
.prof-creator-name {
  font-family: var(--font-body); font-size: 1.6rem;
  font-weight: 500; letter-spacing: 2px; line-height: 1.2; margin-bottom: 0.4rem;
  color: var(--cream);
}
.prof-creator-title {
  color: var(--smoke); font-size: 0.88rem; font-weight: 300;
  letter-spacing: 1px; margin-bottom: 1.2rem;
}
/* Meta chips */
.prof-meta-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-bottom: 1rem;
}
.prof-chip {
  display: flex; align-items: center; gap: 0.35rem;
  background: var(--glass); border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem; letter-spacing: 1px; color: var(--smoke);
}
/* Verified badge */
.prof-verified-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 0.3rem 0.9rem;
  font-size: 0.65rem; letter-spacing: 2px; font-weight: 600;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
/* About wrap */
.prof-about-wrap {
  max-width: 640px; margin-top: 1rem;
}
.prof-about-label {
  font-family: var(--font-display); font-size: 0.85rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.prof-about-text {
  font-size: 0.92rem; line-height: 1.85; color: #c0b9ae;
  font-weight: 300; margin-bottom: 1.5rem;
}
.prof-contact-anchor-btn {
  background: none; border: 1px solid var(--gold);
  color: var(--gold); font-family: var(--font-body);
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 0.65rem 1.8rem; cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.prof-contact-anchor-btn:hover {
  background: var(--gold); color: var(--ink);
}
/* SECTION COMMON */
.prof-portfolio-section,
.prof-skills-section,
.prof-services-section,
.prof-reviews-section,
.prof-contact-section {
  padding: 4rem clamp(1.2rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}
.prof-section-head { margin-bottom: 2.5rem; }
.prof-section-label {
  font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.prof-section-title {
  font-family: var(--font-display); font-size: 2rem; letter-spacing: 3px;
}
.prof-section-serif {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; font-size: 1.9rem;
}
/* PORTFOLIO MASONRY GRID */
.prof-portfolio-grid {
  columns: 3; column-gap: 8px;
}
.prof-portfolio-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--glass);
  /* scroll-reveal: start hidden */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.prof-portfolio-item.port-visible {
  opacity: 1;
  transform: translateY(0);
}
.prof-portfolio-item img,
.prof-portfolio-item video {
  width: 100%; height: auto; display: block;
  transition: transform 0.5s var(--transition);
}
.prof-portfolio-item:hover img,
.prof-portfolio-item:hover video {
  transform: scale(1.04);
}
.prof-port-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.75);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.4rem;
  opacity: 0; transition: opacity 0.3s;
}
.prof-portfolio-item:hover .prof-port-overlay { opacity: 1; }
.prof-port-overlay-icon { font-size: 2rem; }
.prof-port-overlay-label {
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}
/* Skeleton loaders */
.prof-port-skel {
  break-inside: avoid; margin-bottom: 8px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: skelShimmer 1.5s infinite;
  height: 200px;
}
.prof-port-skel--tall { height: 300px; }
@keyframes skelShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.prof-skill-skel {
  height: 40px; margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: skelShimmer 1.5s infinite;
}
/* SKILLS */
.prof-skills-inner { max-width: 700px; }
.prof-skill-meters {}
/* CONTACT SECTION */
.prof-contact-grid {
  display: flex; flex-wrap: wrap;
  gap: 3rem; max-width: 860px;
  align-items: flex-start;
  margin: 0 auto; /* ← center karo */
}
.prof-contact-info-card {
  background: none; border: none;
  padding: 0; flex: 1; min-width: 220px;
}
.prof-contact-info-title {
  font-family: var(--font-display); font-size: 1rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.prof-contact-info-rows { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.prof-contact-row {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.85rem;
}
.prof-contact-icon { font-size: 1.1rem; width: 24px; text-align: center; }
.prof-contact-val { color: var(--cream); }
.prof-contact-val a { color: var(--gold); text-decoration: none; }
.prof-contact-social-title {
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--smoke); margin-bottom: 0.5rem; margin-top: 1rem;
}
.prof-contact-actions-card {
  background: none; border: none;
  padding: 0; flex: 1; min-width: 220px;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.prof-contact-note {
  font-size: 0.7rem; color: var(--smoke);
  letter-spacing: 0.5px; margin-top: 1rem; text-align: left;
}
/* PORTFOLIO LIGHTBOX */
.port-lightbox {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(5,5,5,0.97);
  display: flex; align-items: center; justify-content: center;
  animation: lbFadeIn 0.25s ease;
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.port-lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream); font-size: 1.1rem;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
  z-index: 2;
}
.port-lb-close:hover { background: rgba(201,168,76,0.2); color: var(--gold); }
.port-lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream); font-size: 2.5rem; width: 50px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; z-index: 2;
  line-height: 1;
}
.port-lb-arrow:hover { background: rgba(201,168,76,0.15); }
.port-lb-prev { left: 1.2rem; }
.port-lb-next { right: 1.2rem; }
.port-lb-media-wrap {
  width: 100vw; height: 100vh;
  max-width: 100vw; max-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; cursor: grab; user-select: none;
  position: absolute; inset: 0;
}
.port-lb-media-wrap.grabbing { cursor: grabbing; }
.port-lb-media-wrap img,
.port-lb-media-wrap video {
  width: 100vw; height: 100vh;
  max-width: 100vw; max-height: 100vh;
  object-fit: contain; display: block;
  animation: lbSlide 0.3s ease;
  transition: transform 0.15s ease;
  transform-origin: center center;
}
.port-lb-zoom-controls {
  position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 0.5rem; z-index: 3;
  background: rgba(10,10,10,0.7); border: 1px solid rgba(201,168,76,0.25);
  padding: 0.4rem 0.8rem; border-radius: 2px;
}
.port-lb-zoom-btn {
  background: none; border: none; color: var(--cream);
  font-size: 1.1rem; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: color 0.2s;
}
.port-lb-zoom-btn:hover { color: var(--gold); }
.port-lb-zoom-pct {
  font-size: 0.68rem; letter-spacing: 2px; color: var(--smoke);
  min-width: 36px; text-align: center;
}
@keyframes lbSlide { from { opacity:0; transform:scale(0.96); } to { opacity:1; transform:scale(1); } }
.port-lb-caption {
  position: absolute; bottom: 3.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--smoke); white-space: nowrap;
}
.port-lb-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem; letter-spacing: 3px; color: rgba(255,255,255,0.35);
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .prof-portfolio-grid { columns: 2; }
  .prof-contact-grid { grid-template-columns: 1fr; }
  .prof-creator-name { font-size: 1.3rem; }
  .prof-studio-name { font-size: clamp(2rem, 8vw, 3.2rem); letter-spacing: 4px; }
}
@media (max-width: 600px) {
  .prof-portfolio-grid { columns: 2; column-gap: 4px; }
  .prof-port-skel { height: 140px; }
  .prof-port-skel--tall { height: 210px; }
  .prof-identity-block { padding: 4rem 1.2rem 2.5rem; grid-template-columns: 1fr; }
  .prof-left-col { align-items: center; }
  .prof-meta-chips { justify-content: center !important; }
  .prof-right-col { padding-top: 0; }
  .prof-about-wrap { text-align: center !important; }
  .prof-creator-name { font-size: 1.2rem; }
  .prof-photo-wrap { width: 130px; height: 130px; }
}
/* PROFILE COVER BANNER */
.prof-cover-banner {
  width: 100%; height: 280px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a2030 50%, #0f1520 100%);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
/* Jab cover banner hide ho to bilkul jagah nahi leni chahiye */
.prof-cover-banner[style*="display:none"],
.prof-cover-banner[style*="display: none"] {
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: none !important;
}
.prof-cover-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; background: linear-gradient(0deg, rgba(10,10,10,1) 0%, transparent 100%);
  pointer-events: none;
}
.prof-cover-edit-btn {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(10,10,10,0.75); border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold); font-size: 0.68rem; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 0.45rem 0.9rem; cursor: pointer;
  transition: all 0.2s;
}
.prof-cover-edit-btn:hover { background: rgba(201,168,76,0.15); }
/* PROFILE PHOTO EDIT BUTTON */
.prof-photo-edit-btn {
  position: absolute; bottom: 4px; right: 4px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 2px solid var(--ink);
  transition: transform 0.2s;
}
.prof-photo-edit-btn:hover { transform: scale(1.15); }
/* VIDEO SECTION */
.prof-video-section {
  padding: clamp(2rem,4vw,4rem) clamp(1rem,4vw,3rem);
  border-bottom: 1px solid var(--border);
}
.prof-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}
.prof-video-item {
  position: relative; background: #0a0a0a;
  border: 1px solid var(--border); overflow: hidden;
  border-radius: 2px; cursor: pointer;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
}
.prof-video-item.vid-visible {
  opacity: 1; transform: translateY(0);
}
.prof-video-item:hover { border-color: rgba(201,168,76,0.4); }
.prof-video-item video {
  width: 100%; height: 200px; object-fit: cover; display: block;
  pointer-events: none;
}
.prof-video-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.55);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.3s;
}
.prof-video-item:hover .prof-video-overlay { background: rgba(10,10,10,0.3); }
.prof-video-play-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  transition: transform 0.3s, background 0.3s;
}
.prof-video-item:hover .prof-video-play-icon {
  transform: scale(1.12); background: rgba(201,168,76,0.25);
}
.prof-video-title {
  font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cream); text-align: center; padding: 0 1rem;
}
/* Mobile optimizations */
/* GLOBAL PERFORMANCE TWEAKS */
*,*::before,*::after {
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video {
  max-width: 100%;
  height: auto;
}
/* Prevent horizontal overflow everywhere */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
/* Smooth scrolling only when no motion preference */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* NAV — MOBILE FIXES */
@media (max-width: 900px) {
  nav {
    padding: 0.9rem 1.2rem;
    height: 60px;
    align-items: center;
  }
  .nav-logo {
    font-size: 1.65rem;
    letter-spacing: 2.5px;
    line-height: 1;
  }
  .nav-hamburger {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-direction: column;
    touch-action: manipulation;
  }
  .nav-hamburger span {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--cream);
    pointer-events: none;
  }
  /* Slide-in drawer — full-height, safe area aware */
  .nav-links {
    top: 0;
    right: -100vw;
    width: min(300px, 85vw);
    padding: 0;
    padding-top: max(56px, env(safe-area-inset-top, 0px) + 56px);
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px) + 2rem);
    background: #0d0d0d;
    border-left: 1px solid rgba(201,168,76,0.15);
    transition: right 0.32s cubic-bezier(0.23,1,0.32,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem 1.8rem;
    font-size: 0.82rem;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s, color 0.2s;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav-links a:active { background: rgba(201,168,76,0.1); color: var(--gold); }
  .nav-mobile-auth {
    display: block;
    padding: 0.5rem 1.5rem;
    width: 100%;
  }
  .nav-mobile-auth button {
    min-height: 38px;
    font-size: 0.65rem;
    padding: 0.45rem 1rem !important;
    letter-spacing: 1.5px;
  }
}
/* HERO — MOBILE */
@media (max-width: 900px) {
  #hero {
    min-height: 100svh; /* uses small viewport height on mobile */
    height: 100svh;
    padding-top: 60px;
  }
  .hero-content {
    padding: 0 1.2rem;
    text-align: center;
  }
  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
  }
  .hero-title {
    font-size: clamp(3.5rem, 14vw, 6rem);
    letter-spacing: 2px;
    line-height: 0.92;
  }
  .hero-sub {
    font-size: 0.9rem;
    margin: 1.4rem auto;
    max-width: 340px;
    line-height: 1.65;
  }
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    max-width: 320px;
    padding: 1rem 2rem;
    font-size: 0.82rem;
    min-height: 52px;
  }
  .hero-scroll { display: none; }
  .hero-slide-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    bottom: 1.2rem;
    left: 1.2rem;
  }
  .hero-accent-line.top { top: 60px; }
  /* Disable Ken Burns completely on mobile — major GPU/freeze fix */
  .hero-slide, .hero-slide.active {
    animation: none !important;
    transform: translateZ(0) !important;
  }
  /* Also stop showcase strip 3 on mobile */
  .showcase-strip:nth-child(3) { display: none; }
}
@media (max-width: 600px) {
  #hero {
    height: 100svh;
    min-height: 580px;
  }
  .hero-title {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 24px;
  }
  /* Grain expensive on low-end mobile — disable completely */
  .hero-grain { display: none; }
}
/* STATS STRIP — MOBILE */
@media (max-width: 600px) {
  .stats-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.5rem;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-item {
    padding: 1rem 0.6rem;
    border-right: 1px solid rgba(10,10,10,0.15);
    border-bottom: 1px solid rgba(10,10,10,0.15);
  }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: 0.58rem; letter-spacing: 1.5px; }
}
/* SECTIONS — MOBILE SPACING */
@media (max-width: 900px) {
  section { padding: 3.5rem 1.4rem; }
  .section-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .section-label { font-size: 0.62rem; letter-spacing: 3px; }
}
@media (max-width: 600px) {
  section { padding: 2.8rem 1rem; }
  .section-title { font-size: clamp(1.9rem, 9vw, 3rem); }
}
/* CREATORS GRID — MOBILE */
@media (max-width: 900px) {
  .creators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .creators-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    width: 100%;
  }
  .filter-tab {
    flex: 1 1 calc(50% - 0.2rem);
    min-width: 80px;
    font-size: 0.68rem;
    padding: 0.55rem 0.5rem;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .creators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  .creator-card { min-height: 240px; }
  .creator-name { font-size: 1rem; }
  .creator-tags { display: none; }
  .creator-info { padding: 1.2rem 1rem; }
  .creator-category { font-size: 0.55rem; }
  /* Show view btn always on touch */
  .view-btn {
    opacity: 1;
    transform: scale(1) rotate(0);
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
}
/* HOW IT WORKS — MOBILE */
@media (max-width: 900px) {
  .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .how-steps::before { display: none; }
  .step { border: 1px solid var(--border); padding: 1.8rem 1.2rem; }
}
@media (max-width: 600px) {
  .how-steps { grid-template-columns: 1fr; }
  .step {
    border-bottom: 1px solid var(--border);
    border-left: none; border-right: none; border-top: none;
    padding: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
  }
  .step:first-child { border-top: 1px solid var(--border); }
  .step-num {
    font-size: 2rem;
    flex-shrink: 0;
    width: 48px;
  }
  .step h4 { font-size: 0.82rem; margin-bottom: 0.4rem; }
  .step p { font-size: 0.82rem; }
}
/* BROWSE PAGE — MOBILE */
@media (max-width: 900px) {
  .browse-section {
    padding-top: 1.5rem !important;
  }
  .search-bar {
    flex-direction: column;
    gap: 0;
  }
  .search-input {
    width: 100%;
    border-bottom: none;
    padding: 0.95rem 1rem;
    font-size: 1rem; /* prevent iOS zoom */
    min-height: 52px;
  }
  .search-select {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 0.95rem 1rem;
    font-size: 1rem; /* prevent iOS zoom */
    min-height: 52px;
  }
  .search-btn {
    width: 100%;
    padding: 1rem;
    min-height: 52px;
    font-size: 0.82rem;
  }
}
/* FOOTER — MOBILE */
@media (max-width: 900px) {
  footer {
    padding: 3rem 1.4rem 2rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px) + 2rem);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-logo { font-size: 1.6rem; }
}
@media (max-width: 600px) {
  footer { padding: 2.5rem 1rem 2rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
  .footer-links a, .footer-copy, .footer-bottom-links a {
    font-size: 0.82rem;
    min-height: 36px;
    display: flex;
    align-items: center;
  }
  .footer-logo { font-size: 1.4rem; }
}
/* CONTACT PAGE — MOBILE */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .contact-page { padding-top: 60px; }
  .contact-hero { padding: 2.5rem 1rem 1.5rem; }
  .contact-info, .contact-form-section { padding: 2rem 1rem; }
  .contact-hero h2 { font-size: clamp(1.8rem, 8vw, 2.5rem) !important; }
}
/* FORMS — MOBILE USABILITY */
@media (max-width: 600px) {
  /* 16px minimum to prevent iOS zoom-on-focus */
  .form-input,
  .form-select,
  .form-textarea,
  .search-input,
  .search-select,
  .login-input {
    font-size: 1rem !important;
  }
  .form-grid { grid-template-columns: 1fr; }
  .form-input, .form-select {
    min-height: 50px;
    padding: 0.9rem 1rem;
  }
  .form-submit, .btn-primary, .btn-outline, .login-submit-btn {
    min-height: 52px;
    font-size: 0.82rem;
  }
}
/* LOGIN PAGE — MOBILE */
@media (max-width: 600px) {
  .login-cosmic-wrap {
    padding: max(60px, env(safe-area-inset-top, 0px) + 60px) 0.8rem 2rem;
    align-items: flex-start;
    min-height: 100svh;
  }
  .login-card {
    flex-direction: column;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }
  .login-left {
    width: 100%;
    min-height: auto;
  }
  .login-left-inner {
    padding: 1.4rem 1.2rem;
  }
  .login-planet-wrap {
    width: 100px;
    height: 100px;
    margin: 0.5rem auto;
  }
  .login-left-title { font-size: 1.5rem; letter-spacing: 3px; }
  .login-left-sub, .login-perks { display: none; }
  .login-right { padding: 1.4rem 1.2rem; }
  .login-form-inner { max-width: 100%; }
  .login-form-title { font-size: 1.7rem; }
  .role-select-card { padding: 1rem; }
  .role-select-icon { width: 42px; height: 42px; font-size: 1.5rem; }
}
/* Login split-screen (used on login page) */
@media (max-width: 600px) {
  .login-split-wrap { padding-top: 60px; }
  .login-split-right {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: calc(100svh - 60px);
  }
  .login-split-form { padding: 1.8rem 1.2rem; }
  .login-split-title { font-size: 1.6rem; }
  .role-select-card { padding: 1rem; min-height: 68px; }
}
/* DASHBOARD — MOBILE */
@media (max-width: 900px) {
  .dashboard-layout { flex-direction: column; }
  .dashboard-sidebar {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }
  .dash-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0 1rem;
  }
  .dash-nav-item {
    padding: 0.6rem 0.9rem;
    border-left: none;
    border-bottom: 2px solid transparent;
    font-size: 0.72rem;
    min-height: 44px;
    border-radius: 4px;
  }
  .dash-nav-item:hover, .dash-nav-item.active {
    border-left-color: transparent;
    border-bottom-color: var(--gold);
    background: rgba(201,168,76,0.06);
  }
  .dash-main { padding: 1.8rem 1.2rem; }
  .dash-stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .dash-page-title { font-size: 1.8rem; }
  .portfolio-manage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dash-user { padding: 0.8rem 1rem; }
  .dash-logo { padding: 0.8rem 1rem 1rem; font-size: 1.3rem; }
  .dash-main { padding: 1.2rem 0.8rem; }
  .dash-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .dash-stat { padding: 1rem; }
  .dash-stat-value { font-size: 1.6rem; }
  .portfolio-manage-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  /* Mobile-friendly dashboard header */
  .dash-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  .dash-header .btn-primary {
    font-size: 0.68rem;
    padding: 0.5rem 1rem;
    letter-spacing: 1.5px;
  }
  .dash-page-title { font-size: 1.6rem; }
}
/* PROFILE PAGE — MOBILE */
@media (max-width: 900px) {
  .prof-identity-block {
    padding: 5rem 1.4rem 2.5rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .prof-portfolio-grid { columns: 2; }
  .prof-studio-name { font-size: clamp(1.8rem, 7vw, 3rem); }
  .prof-creator-name { font-size: 1.3rem; }
  .prof-contact-grid { flex-direction: column; gap: 2rem; }
  .prof-cover-banner { height: 200px; }
  .prof-video-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .prof-identity-block {
    padding: 4rem 1rem 2rem;
    grid-template-columns: 1fr;
  }
  .prof-left-col { align-items: center; }
  .prof-meta-chips { justify-content: center !important; }
  .prof-about-wrap { text-align: center !important; }
  .prof-photo-wrap { width: 120px; height: 120px; }
  .prof-creator-name { font-size: 1.1rem; }
  .prof-studio-name { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .prof-portfolio-grid { columns: 2; column-gap: 3px; }
  .prof-port-skel { height: 130px; }
  .prof-port-skel--tall { height: 200px; }
  .prof-cover-banner { height: 160px; }
  /* Lightbox — full screen on mobile */
  .port-lb-arrow {
    width: 40px; height: 60px;
    font-size: 1.8rem;
  }
  .port-lb-prev { left: 0.5rem; }
  .port-lb-next { right: 0.5rem; }
}
/* SHOWCASE STRIP — MOBILE PERFORMANCE */
@media (max-width: 600px) {
  .showcase-wrap { gap: 6px; }
  .showcase-strip { height: 120px; }
  .showcase-track { gap: 6px; }
  /* Only show 2 strips on mobile for perf */
  .showcase-strip:nth-child(3) { display: none; }
}
/* MODAL & LIGHTBOX — MOBILE */
@media (max-width: 600px) {
  .chat-modal {
    max-width: 100%;
    max-height: 92svh;
    border-radius: 16px 16px 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
  }
  .chat-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .chat-modal-header { padding: 1rem 1.2rem; }
  .chat-messages { flex: 1; overflow-y: auto; }
  .chat-input-row { padding: 0.8rem 1rem; padding-bottom: max(0.8rem, env(safe-area-inset-bottom, 0px)); }
  .chat-input {
    font-size: 1rem; /* prevent iOS zoom */
    min-height: 44px;
  }
}
/* TOAST — MOBILE */
@media (max-width: 600px) {
  .toast {
    left: 1rem;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom, 0px) + 0.5rem);
    max-width: 100%;
    font-size: 0.82rem;
    text-align: center;
    border-radius: 6px;
  }
}
/* CATEGORIES GRID — MOBILE */
@media (max-width: 900px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
}
@media (max-width: 600px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .cat-pill { padding: 0.7rem 0.4rem; font-size: 0.6rem; letter-spacing: 0.8px; }
  .cat-icon { font-size: 1.2rem; margin-bottom: 0.3rem; }
}
/* WHAT GRID — MOBILE */
@media (max-width: 900px) {
  .what-grid { grid-template-columns: 1fr; margin-top: 2.5rem; }
}
@media (max-width: 600px) {
  .what-card { padding: 1.8rem 1.2rem; min-height: 220px; }
  .what-card::before { font-size: 3rem; }
}
/* MISSION BANNER — MOBILE */
@media (max-width: 600px) {
  #page-home > section:nth-last-child(2),
  .mission-banner-inner {
    padding: 3rem 1rem !important;
  }
  #page-home section[style*="background:var(--gold)"] h2 {
    font-size: clamp(1.7rem, 7vw, 2.8rem) !important;
    letter-spacing: 2px !important;
    line-height: 1.15 !important;
  }
  #page-home section[style*="background:var(--gold)"] button {
    width: 100%;
    max-width: 300px;
    min-height: 52px;
  }
}
/* BEST CREATORS PAGE — MOBILE */
@media (max-width: 900px) {
  #page-best-creators {
    padding-top: 60px;
  }
}
/* SIGNUP PAGE — MOBILE */
@media (max-width: 600px) {
  #page-signup {
    padding-top: 60px;
  }
  .auth-form-side {
    padding: 1.5rem 1rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  }
  .auth-form-wrap { max-width: 100%; }
  .auth-title { font-size: 2.2rem; }
  .auth-visual { display: none; }
  .step-indicators { margin-bottom: 1.8rem; }
  .upload-zone { padding: 1.8rem 1rem; }
  .upload-icon { font-size: 2rem; }
  .social-input-row {
    flex-wrap: nowrap;
  }
  /* Banner preview */
  #su_bannerPreview img {
    height: 100px !important;
  }
}
/* TOUCH TARGETS — ALL INTERACTIVE ELEMENTS */
@media (max-width: 900px) {
  button,
  [onclick],
  .creator-card,
  .filter-tab,
  .hsd-dot,
  .social-link,
  .contact-social-link,
  .footer-links a,
  .nav-links a,
  .role-select-card,
  .login-social-btn,
  .login-submit-btn,
  .form-submit,
  .btn-primary,
  .btn-outline,
  .nav-cta {
    touch-action: manipulation;
  }
  /* Minimum 44px tap target */
  .hsd-dot {
    width: 10px !important;
    height: 10px !important;
    padding: 8px;
    box-sizing: content-box;
  }
  .hsd-dot.active {
    width: 22px !important;
  }
  .social-link,
  .contact-social-link {
    min-width: 44px;
    min-height: 44px;
  }
}
/* FIXED BOTTOM NAV — MOBILE (Optional Enhancement) */
/* Adds iOS-style safe area padding so content isn't under home bar */
@media (max-width: 600px) {
  body {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  /* Page containers shouldn't overlap the nav */
  .page.active > :first-child:not(nav):not(#hero) {
    padding-top: max(60px, env(safe-area-inset-top, 0px) + 60px);
  }
}
/* PORTFOLIO LIGHTBOX — TOUCH SWIPE HINT */
@media (max-width: 600px) {
  .port-lightbox {
    touch-action: pan-y;
  }
  .port-lb-zoom-controls {
    bottom: max(4rem, env(safe-area-inset-bottom, 0px) + 3rem);
  }
  .port-lb-caption {
    bottom: max(3rem, env(safe-area-inset-bottom, 0px) + 2rem);
  }
  .port-lb-counter {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px) + 0.5rem);
  }
}
/* BROWSE — MOBILE LAYOUT FIXES */
@media (max-width: 600px) {
  #page-browse .browse-section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  /* Browse grid matches home grid */
  #page-browse .creators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  /* Sort/filter bar stacks */
  .browse-sort-bar {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .browse-sort-bar select {
    font-size: 1rem;
    min-height: 44px;
  }
}
/* CARD HOVER → ACTIVE ON TOUCH */
@media (hover: none) {
  /* On touch devices, show overlay on tap instead of hover */
  .creator-card:active .creator-overlay { opacity: 1; }
  .creator-card:active .creator-info { transform: translateY(0); }
  .portfolio-item:active .portfolio-item-overlay { opacity: 1; }
  .portfolio-item:active > img { transform: scale(1.04); }
  /* Remove hover-only transitions that feel laggy on touch */
  .what-card:hover,
  .filter-tab:hover,
  .step:hover {
    transform: none;
  }
}
/* HERO SLIDE COUNTER/DOTS — MOBILE */
@media (max-width: 600px) {
  .hero-slide-counter {
    left: 1rem;
    bottom: 1.8rem;
    font-size: 0.65rem;
  }
  .hero-slide-dots {
    right: 1rem;
    bottom: 1.8rem;
  }
  .slide-divider { width: 20px; }
}
/* ONBOARDING / SIGNUP MULTI-STEP — MOBILE */
@media (max-width: 600px) {
  .step-indicators {
    gap: 0.3rem;
    margin-bottom: 1.5rem;
  }
  .step-dot { height: 3px; }
  /* Larger checkboxes/radios */
  input[type="checkbox"],
  input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
  }
}
/* PERFORMANCE: REDUCE BLUR ON LOW-END */
@media (max-width: 600px) {
  /* backdrop-filter is expensive; reduce where not critical */
  .floater { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .chat-modal-overlay { backdrop-filter: blur(2px); }
  .nav-overlay { backdrop-filter: blur(2px); }
}

/* ── MOBILE PERFORMANCE OPTIMIZATIONS ── */
@media (max-width: 900px) {

  /* 1. Nav blur reduce karo — blur(20px) bahut heavy hai mobile pe */
  nav {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }

  /* 2. Hero grain texture — mobile pe disable, feTurbulence CPU killer hai */
  .hero-grain {
    display: none !important;
  }

  /* 3. Floaters — desktop only */
  .hero-floaters--desktop {
    display: none !important;
  }

  /* 4. Ken Burns — mobile pe sirf simple fade, no scale/translate animation */
  .hero-slide {
    will-change: opacity !important;
  }
  .hero-slide.active {
    animation: mobileFadeIn 1.2s ease forwards !important;
  }
  .hero-slide.fade-out {
    animation: none !important;
    opacity: 0 !important;
    transition: opacity 0.8s ease !important;
  }

  /* 5. Page transition — mobile pe off */
  .page.active {
    animation: none !important;
  }

  /* 6. Hero overlay simplify */
  .hero-overlay-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%) !important;
  }

  /* 7. Smooth scroll — instant on mobile (janky on low-end Android) */
  html {
    scroll-behavior: auto !important;
  }
}

@keyframes mobileFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* UTILITY: VISUALLY HIDDEN (ACCESSIBILITY) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* PORTRAIT LOCK NOTICE */
/* Small landscape phones get a gentle hint to rotate if content clips */
@media (max-height: 400px) and (max-width: 900px) {
  .hero-content { padding-top: 0; }
  .hero-title { font-size: 2.8rem; }
  .hero-sub { display: none; }
  .hero-eyebrow { display: none; }
  .hero-actions { flex-direction: row; gap: 0.6rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { max-width: 160px; padding: 0.7rem 1rem; font-size: 0.72rem; }
}
/* INPUT AUTOFILL DARK THEME FIX */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #0d0d0d inset !important;
  -webkit-text-fill-color: var(--cream) !important;
  caret-color: var(--cream);
  border-color: rgba(201,168,76,0.5) !important;
}
/* NOTIF BELL — MOBILE */
@media (max-width: 900px) {
  .notif-bell {
    display: none !important; /* moved to inside mobile nav when needed */
  }
}
/* HERO SLIDE LABEL */
.hero-slide-label {
  transition: opacity 0.35s ease;
}
/* WHAT CARD INNER PADDING */
.what-card { padding: clamp(1.5rem, 4vw, 3rem); }
/* SMOOTH PAGE TRANSITIONS */
.page {
  animation: none;
}
.page.active {
  animation: pageFadeIn 0.22s ease both;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* FIX: ENSURE PAGES START BELOW NAV */
#page-contact,
#page-best-creators {
  padding-top: 60px;
}
@media (min-width: 901px) {
  #page-contact,
  #page-best-creators {
    padding-top: 64px;
  }
}
/* WHAT GRID — NUMBER LABELS MOBILE */
@media (max-width: 600px) {
  .what-card::before { font-size: 2.5rem; }
}
/* NAV AUTH BUTTONS — MOBILE INLINE OVERRIDE */
@media (max-width: 900px) {
  /* The desktop Login + Join Free are hidden on mobile anyway */
  .nav-desktop-auth { display: none !important; }
  /* Mobile drawer: Login + Join buttons — compact */
  .nav-mobile-auth .btn-outline,
  .nav-mobile-auth .nav-cta {
    padding: 0.45rem 1rem !important;
    font-size: 0.65rem !important;
    letter-spacing: 1.5px !important;
    min-height: 38px !important;
  }
}
/* Dashboard - mobile fixes */
@media (max-width: 768px) {
  .dash-nav-desktop-only {
    display: none !important;
  }
  /* Social Links btn always visible at bottom */
  #dashSocialLinksBtn {
    display: block !important;
  }
}
@media (min-width: 769px) {
  /* On desktop, bottom Social Links btn is redundant — hide it */
  #dashSocialLinksBtn {
    display: none !important;
  }
}
/* PROFILE PAGE — Back bar: chhota aur tight */
#page-profile {
  padding-top: 0;
}
.prof-back-bar {
  top: 64px !important;
  padding: 0.45rem 1.2rem !important;
  min-height: 0 !important;
}
@media (max-width: 900px) {
  .prof-back-bar { top: 56px !important; }
}
/* CONTACT SECTION — Mobile center karo */
@media (max-width: 768px) {
  .prof-contact-section {
    padding: 2rem 1.2rem !important;
    text-align: center !important;
  }
  .prof-contact-grid {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
    text-align: center !important;
  }
  .prof-contact-info-card,
  .prof-contact-actions-card {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    align-items: center !important;
  }
  .prof-contact-info-rows {
    align-items: center !important;
  }
  .prof-contact-row {
    justify-content: center !important;
  }
  .prof-contact-social-title {
    text-align: center !important;
  }
  .prof-contact-note {
    text-align: center !important;
  }
  .social-links {
    justify-content: center !important;
  }
  .prof-contact-actions-card .contact-btn-big,
  .prof-contact-actions-card .contact-btn-outline {
    width: 100% !important;
    max-width: 360px !important;
  }
}
/* MOBILE NAV — Logo bada aur center */
@media (max-width: 900px) {
  nav {
    justify-content: center !important;
    position: fixed !important;
  }
  .nav-logo {
    font-size: 2.4rem !important;
    letter-spacing: 5px !important;
    text-align: center !important;
    flex: 1 !important;
    justify-content: center !important;
    font-weight: 900 !important;
    -webkit-text-stroke: 0.5px var(--gold);
  }
  .nav-hamburger {
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}
@media (max-width: 480px) {
  .nav-logo {
    font-size: 2rem !important;
    letter-spacing: 4px !important;
    font-weight: 900 !important;
    -webkit-text-stroke: 0.5px var(--gold);
  }
}
/* Featured creators slider */
.featured-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.featured-slider-viewport {
  flex: 1;
  overflow: hidden;
  cursor: grab;
}
.featured-slider-viewport.is-dragging { cursor: grabbing; }
.featured-slider-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 0.5rem 1.5rem;
  transition: transform 0.42s cubic-bezier(0.23,1,0.32,1);
  will-change: transform;
}
.featured-slider-track .creator-card-v2 {
  flex: 0 0 270px;
  width: 270px;
  min-width: 270px;
}
.fslider-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(10,10,10,0.8);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fslider-arrow:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }
.fslider-arrow:disabled { opacity: 0.25; cursor: default; }
@media (max-width: 600px) {
  .featured-slider-track .creator-card-v2 { flex: 0 0 220px; width: 220px; min-width: 220px; }
  .fslider-arrow { width: 32px; height: 32px; font-size: 0.9rem; }
}


/* ═══════════════════════════════════════════════════════
   IDYLLIC STUDIOS — PROFILE PAGE REDESIGN
   Reference: Black bg, Gold type, bold display typography
   ══════════════════════════════════════════════════════ */

/* ── HERO HEADER ─────────────────────────────────────── */
.idyllic-hero {
  padding: 5rem clamp(1.2rem,6vw,5rem) 3rem;
  background: var(--ink);
  border-bottom: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
  padding-top: calc(72px + 3rem);
}
.idyllic-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 55%);
  pointer-events: none;
}

/* Studio name — big IDYLLIC STUDIOS style */
.idyllic-studio-title {
  margin-bottom: 2rem;
  text-align: center;
}
.idyllic-studio-text {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 14rem);
  letter-spacing: 4px;
  line-height: 0.95;
  color: var(--gold);
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
}
.idyllic-studio-accent {
  color: var(--cream);
  font-style: italic;
}
/* Creator handle — hidden (name now shown above photo) */
.idyllic-creator-handle {
  display: none;
}

/* Name above photo */
.idyllic-photo-name {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-weight: 900;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-style: italic;
  width: 100%;
  text-shadow: 0 2px 18px rgba(201,168,76,0.25);
}

/* About row: text left + photo right, centred container */
.idyllic-about-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.idyllic-about-left {
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
}
.idyllic-about-label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 5px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0.8rem;
}
.idyllic-about-text {
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  line-height: 1.75;
  color: rgba(245,240,232,0.82);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.idyllic-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.idyllic-meta-chip {
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--smoke);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.3rem 0.8rem;
}
.idyllic-badges-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.idyllic-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 0.3rem 0.9rem;
  font-size: 0.65rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}
.idyllic-title-tag {
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--smoke);
  border: 1px solid var(--border);
  padding: 0.3rem 0.9rem;
}
.idyllic-contact-btn {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 4px;
  padding: 0.7rem 2rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  text-transform: uppercase;
}
.idyllic-contact-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Photo side — right of about text */
.idyllic-photo-side {
  flex-shrink: 0;
  width: clamp(180px, 28vw, 300px);
}
.idyllic-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  background: var(--glass);
  border: 2px solid var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.idyllic-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.idyllic-photo-edit {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(10,10,10,0.8);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.idyllic-photo-edit:hover { background: rgba(201,168,76,0.2); }

/* ── MEDIA BANNER ────────────────────────────────────── */
.idyllic-media-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem clamp(1.2rem,6vw,5rem) 2rem;
  background: var(--ink);
}
.idyllic-media-word {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: 10px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.idyllic-media-line {
  flex: 1;
  height: 3px;
  background: var(--gold);
}

/* ── CATEGORY SECTIONS ───────────────────────────────── */
.idyllic-cat-section {
  padding: 0 0 0;
  border-bottom: none;
}

/* Section divider header — full width like reference image */
.idyllic-cat-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2.5rem clamp(1.2rem,6vw,5rem) 1rem;
  border-top: 1px solid rgba(201,168,76,0.18);
  background: var(--ink);
}

/* First section (Photography) has no top border */
#profilePhotoSection .idyllic-cat-header {
  border-top: none;
  padding-top: 1.5rem;
}

.idyllic-cat-label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 8px;
  color: var(--gold);
  font-style: italic;
  text-align: right;
  text-transform: uppercase;
  line-height: 1;
}

.idyllic-cat-grid {
  padding: 0 clamp(1.2rem,6vw,5rem) 3rem;
  background: var(--ink);
}

/* ── HIRE ME BANNER ──────────────────────────────────── */
.idyllic-hireme {
  padding: 3rem clamp(1.2rem,6vw,5rem);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.03);
}
.idyllic-hireme-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,7vw,5rem);
  letter-spacing: 8px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.idyllic-hireme-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
  margin-bottom: 1rem;
}
.idyllic-hireme-item {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: var(--cream);
  letter-spacing: 1px;
}
.idyllic-hireme-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin-top: 0.5rem;
}
.idyllic-hireme-city {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.6);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .idyllic-about-row {
    gap: 1.5rem;
  }
  .idyllic-photo-side {
    width: clamp(140px, 28vw, 220px);
    align-self: flex-start;
  }
  .idyllic-about-left { max-width: none; }
  .idyllic-studio-text { font-size: clamp(2.5rem,12vw,4rem); letter-spacing: 4px; }
  .idyllic-creator-handle { font-size: 1.1rem; font-weight: 800; font-style: normal; letter-spacing: 3px; }
  .idyllic-media-word { font-size: clamp(3rem,15vw,6rem); }
  .idyllic-hireme-title { font-size: clamp(2rem,10vw,3.5rem); }
  .idyllic-hireme-info { gap: 1.2rem 2rem; }
  .idyllic-cat-header { padding: 1.5rem 1.2rem 0.8rem; }
  .idyllic-cat-grid { padding: 0 1.2rem 2rem; }
}

/* ═══════════════════════════════════════════════════
   IDYLLIC v2 — HIRE ME FULL SECTION + REVIEWS + FOOTER
   ═══════════════════════════════════════════════════ */

/* ── Photography label: bigger font ─────────────── */
.idyllic-cat-label {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 8px;
  color: var(--gold);
  font-style: italic;
  text-align: right;
  text-transform: uppercase;
}

/* ── Meta chips (location, roles) — smaller, muted ── */
.idyllic-meta-chip {
  font-size: 0.65rem !important;
  letter-spacing: 0.8px !important;
  color: rgba(138,138,138,0.7) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.idyllic-meta-row {
  gap: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}
/* dot separator between chips */
.idyllic-meta-chip + .idyllic-meta-chip::before {
  content: '·';
  margin-right: 0.8rem;
  color: rgba(138,138,138,0.4);
}

/* ── HIRE ME section — full redesign ──────────────── */
.idyllic-hireme {
  padding: 3.5rem clamp(1.5rem, 6vw, 5rem) 3rem;
  background: var(--ink);
  border-top: 2px solid var(--gold);
}
.idyllic-hireme-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  letter-spacing: 8px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1.8rem;
  line-height: 1;
}
.idyllic-hireme-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 3rem;
  margin-bottom: 0.6rem;
  align-items: center;
}
.idyllic-hireme-item {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  color: var(--cream);
  letter-spacing: 0.5px;
  font-weight: 300;
}
.idyllic-hireme-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  margin-bottom: 0.5rem;
}
.idyllic-hireme-city {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.idyllic-hireme-divider {
  height: 1px;
  background: rgba(201,168,76,0.2);
  margin: 2rem 0;
}

/* Social row */
.idyllic-hireme-social-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.idyllic-social-label {
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: var(--smoke);
  text-transform: uppercase;
}
.idyllic-social-icons {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}
.idyllic-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s;
}
.idyllic-social-icons a:hover { border-color: var(--gold); color: var(--gold); }

/* Action buttons */
.idyllic-hireme-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.idyllic-action-btn {
  padding: 0.75rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.idyllic-action-primary {
  background: var(--gold);
  color: var(--ink);
}
.idyllic-action-primary:hover { background: #d9b85c; }
.idyllic-action-outline {
  background: transparent;
  border: 1px solid var(--gold) !important;
  color: var(--gold);
}
.idyllic-action-outline:hover { background: rgba(201,168,76,0.1); }

/* ── REVIEWS BLOCK ───────────────────────────────── */
.idyllic-reviews-block {
  margin-top: 0;
}
.idyllic-reviews-head { margin-bottom: 1.2rem; }
.idyllic-reviews-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}
.idyllic-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}

/* Review form */
.idyllic-review-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem;
  max-width: 600px;
}
.idyllic-review-form-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.idyllic-review-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 0.65rem 0.9rem;
  display: block;
  outline: none;
  transition: border-color 0.2s;
}
.idyllic-review-input:focus { border-color: rgba(201,168,76,0.5); }
.idyllic-review-submit {
  margin-top: 0.8rem;
  width: 100%;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 3px;
  padding: 0.7rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.idyllic-review-submit:hover { background: var(--gold); color: var(--ink); }

/* ── FOOTER WORDMARK ─────────────────────────────── */
.idyllic-footer-wordmark {
  text-align: center;
  padding: 3rem clamp(1rem,4vw,3rem);
  border-top: 1px solid rgba(201,168,76,0.15);
  background: var(--ink);
}
.idyllic-fw-first {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 10px;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  font-style: italic;
}
.idyllic-fw-second {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 10px;
  color: var(--cream);
  font-style: italic;
  font-weight: 900;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 600px) {
  .idyllic-hireme-info  { gap: 0.4rem 1.5rem; }
  .idyllic-hireme-actions { flex-direction: column; }
  .idyllic-action-btn { width: 100%; text-align: center; }
  .idyllic-fw-first, .idyllic-fw-second { font-size: clamp(2.2rem, 12vw, 4rem); }
}

/* ══════════════════════════════════════════
   IDYLLIC v3 — FINAL FIXES
   ══════════════════════════════════════════ */

/* About row — text left, photo right, centred container */
.idyllic-about-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 3rem !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

/* Left col — takes remaining space */
.idyllic-about-left {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  text-align: left !important;
}

/* Photo — right side, fixed width */
.idyllic-photo-side {
  flex: 0 0 auto !important;
  width: clamp(180px, 28vw, 300px) !important;
  margin: 0 !important;
  align-self: flex-start !important;
}
.idyllic-photo-wrap {
  width: 100% !important;
  aspect-ratio: 3/4 !important;
  border-radius: 4px !important;
}

/* About Me text — normalized */
.idyllic-about-text {
  font-weight: 400 !important;
  color: rgba(245,240,232,0.85) !important;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem) !important;
  line-height: 1.75 !important;
  margin-bottom: 2rem !important;
}

/* About Me label — 4x size */
.idyllic-about-label {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 1.8rem !important;
  letter-spacing: 4px !important;
  color: var(--gold) !important;
  margin-bottom: 0.7rem !important;
  font-weight: 400 !important;
}

/* Meta row / chips — completely hidden */
.idyllic-meta-row,
.idyllic-badges-row,
.idyllic-meta-chip,
.idyllic-verified,
.idyllic-title-tag {
  display: none !important;
}

/* Hire me info items — plain, no border, no box */
.idyllic-hireme-item {
  font-size: clamp(0.78rem, 1.5vw, 0.95rem) !important;
  color: var(--cream) !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  font-weight: 300 !important;
  letter-spacing: 0.3px !important;
}

/* ══════════════════════════════════════════
   MOBILE OPTIMISED — mirrors desktop layout
   ══════════════════════════════════════════ */
@media (max-width: 600px) {

  /* Hero padding — tighter on mobile */
  .idyllic-hero {
    padding: calc(64px + 1.5rem) 1rem 2rem !important;
  }

  /* Studio title — shrink font until full name fits on one line */
  .idyllic-studio-title {
    margin-bottom: 1.2rem !important;
    text-align: center !important;
  }
  .idyllic-studio-text {
    font-size: 11vw !important;
    letter-spacing: 1px !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow: visible !important;
    width: 100% !important;
    display: block !important;
    line-height: 0.95 !important;
    text-align: center !important;
  }

  /* Creator name — smaller but still bold */
  .idyllic-creator-handle {
    font-size: 0.85rem !important;
    letter-spacing: 3px !important;
    font-weight: 800 !important;
    margin-top: 0.3rem !important;
  }

  /* About row — side by side on mobile */
  .idyllic-about-row {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
    max-width: 100% !important;
  }

  /* About left — takes remaining space */
  .idyllic-about-left {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
    text-align: left !important;
  }

  /* About Me label */
  .idyllic-about-label {
    font-size: 0.75rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 0.4rem !important;
  }

  /* About Me text */
  .idyllic-about-text {
    font-size: 0.82rem !important;
    line-height: 1.65 !important;
    font-weight: 400 !important;
    margin-bottom: 0.8rem !important;
    max-height: none !important;
    overflow-y: visible !important;
  }

  /* Contact button */
  .idyllic-contact-btn {
    font-size: 0.6rem !important;
    padding: 0.4rem 0.8rem !important;
    letter-spacing: 1.5px !important;
  }

  /* Photo side — fixed width, right side */
  .idyllic-photo-side {
    flex: 0 0 auto !important;
    width: 40vw !important;
    max-width: 200px !important;
    margin: 0 !important;
    align-self: flex-start !important;
  }

  .idyllic-photo-wrap {
    width: 100% !important;
    aspect-ratio: 3/4 !important;
    border-radius: 4px !important;
  }

  /* MEDIA banner */
  .idyllic-media-word {
    font-size: clamp(2.5rem, 13vw, 4rem) !important;
  }

  /* Portfolio grid — 2 columns on mobile */
  .idyllic-cat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.4rem !important;
  }

  .idyllic-cat-header {
    padding: 1.2rem 0.8rem 0.6rem !important;
  }

  .idyllic-cat-grid {
    padding: 0 0.8rem 1.5rem !important;
  }

  .idyllic-cat-label {
    font-size: 1rem !important;
    letter-spacing: 4px !important;
  }

  /* Hire Me section */
  .idyllic-hireme {
    padding: 2rem 1rem 2rem !important;
  }

  .idyllic-hireme-title {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    margin-bottom: 1rem !important;
  }

  .idyllic-hireme-info {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  #profHireEmail,
  #profHirePhone,
  #profHireInstagram {
    font-size: 0.82rem !important;
  }

  .idyllic-hireme-cities {
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
  }

  .idyllic-hireme-city {
    font-size: 0.75rem !important;
  }

  /* Footer wordmark */
  .idyllic-footer-wordmark {
    font-size: clamp(1.5rem, 8vw, 2.5rem) !important;
    padding: 1.5rem 1rem !important;
  }

  /* Reviews */
  .idyllic-reviews-title {
    font-size: 1rem !important;
  }

  .idyllic-review-input {
    font-size: 0.82rem !important;
  }
}

/* ══════════════════════════════════════════
   IDYLLIC v4 — STUDIO TITLE FULL WIDTH + NAME BOLD
   ══════════════════════════════════════════ */

/* Studio title — stretch full page width like reference */
.idyllic-hero {
  padding-left: clamp(1rem, 4vw, 3.5rem) !important;
  padding-right: clamp(1rem, 4vw, 3.5rem) !important;
}

.idyllic-studio-text {
  display: block !important;
  font-family: var(--font-display) !important;
  font-style: italic !important;
  text-transform: uppercase !important;
  letter-spacing: 4px !important;
  line-height: 0.92 !important;
  color: var(--gold) !important;
  font-size: clamp(6rem, 20vw, 14rem) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  width: 100% !important;
  text-align: center !important;
}

/* Creator handle — hidden, name shown above photo instead */
.idyllic-creator-handle {
  display: none !important;
}

/* Mobile: undo nowrap so studio name wraps and never cuts */
@media (max-width: 600px) {
  .idyllic-studio-text {
    white-space: normal !important;
    overflow: visible !important;
    word-break: break-word !important;
    font-size: 11vw !important;
    letter-spacing: 1px !important;
    line-height: 0.95 !important;
    text-align: center !important;
  }
}

/* Hire Me info items — proper size, visible */
#profHireEmail,
#profHirePhone,
#profHireInstagram {
  font-size: clamp(0.82rem, 1.6vw, 1rem) !important;
  color: var(--cream) !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
}

/* Hire me info row — items on one line with spacing */
.idyllic-hireme-info {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.4rem 2.5rem !important;
  margin-bottom: 0.7rem !important;
  align-items: center !important;
}


/* ══════════════════════════════════════════════════════
   HIRE ME — FULL WIDTH REDESIGN v5
   Full page coverage, large info, social icons inline
   ══════════════════════════════════════════════════════ */

/* Main container — stretch edge to edge */
.idyllic-hireme {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 6vw, 6rem) clamp(3rem, 6vw, 5rem) !important;
  background: #0a0a0a !important;
  border-top: 3px solid var(--gold) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Subtle gold radial glow background */
.idyllic-hireme::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 300px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* BIG TITLE */
.idyllic-hireme-title {
  font-family: var(--font-display) !important;
  font-size: clamp(4rem, 13vw, 10rem) !important;
  letter-spacing: 10px !important;
  color: var(--gold) !important;
  font-style: italic !important;
  margin-bottom: 2.5rem !important;
  line-height: 0.9 !important;
  text-transform: uppercase !important;
  position: relative;
  z-index: 1;
}

/* INFO ROW — email · phone · instagram stacked large */
.idyllic-hireme-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  margin-bottom: 2rem !important;
  align-items: flex-start !important;
  position: relative;
  z-index: 1;
}

/* Each info item — big and readable */
.idyllic-hireme-item {
  font-size: clamp(1rem, 2.8vw, 1.6rem) !important;
  color: var(--cream) !important;
  font-weight: 300 !important;
  letter-spacing: 1.5px !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
}

/* Icon prefix on each item */
#profHireEmail::before    { content: '✉ '; color: var(--gold); font-style: normal; font-size: 0.85em; }
#profHirePhone::before    { content: '📞 '; font-size: 0.85em; }
#profHireInstagram::before { content: '📸 '; font-size: 0.85em; }

/* Cities */
.idyllic-hireme-cities {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.6rem 2rem !important;
  margin-bottom: 2rem !important;
  position: relative;
  z-index: 1;
}
.idyllic-hireme-city {
  font-size: clamp(0.75rem, 1.5vw, 0.95rem) !important;
  color: rgba(245,240,232,0.45) !important;
  font-weight: 400 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
}

/* Divider */
.idyllic-hireme-divider {
  height: 1px !important;
  background: rgba(201,168,76,0.2) !important;
  margin: 2.5rem 0 !important;
  position: relative;
  z-index: 1;
}

/* SOCIAL ROW — label + icons, centered on full width */
.idyllic-hireme-social-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1.4rem !important;
  margin-bottom: 2rem !important;
  text-align: center !important;
  width: 100% !important;
  position: relative;
  z-index: 1;
}
.idyllic-social-label {
  font-size: 0.65rem !important;
  letter-spacing: 5px !important;
  color: rgba(201,168,76,0.7) !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}

/* Social icons — big, centered, pill style */
.idyllic-social-icons {
  display: flex !important;
  gap: 1rem !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}
.idyllic-social-icons a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 54px !important;
  height: 54px !important;
  border: 1.5px solid rgba(201,168,76,0.35) !important;
  border-radius: 50% !important;
  color: var(--cream) !important;
  text-decoration: none !important;
  font-size: 1.1rem !important;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s !important;
  background: rgba(255,255,255,0.03) !important;
}
.idyllic-social-icons a:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(201,168,76,0.08) !important;
  transform: translateY(-3px) !important;
}

/* MOBILE */
@media (max-width: 600px) {
  .idyllic-hireme {
    padding: 2.5rem 1.2rem 2.5rem !important;
  }
  .idyllic-hireme-title {
    font-size: clamp(3rem, 14vw, 5rem) !important;
    letter-spacing: 4px !important;
    margin-bottom: 1.8rem !important;
  }
  .idyllic-hireme-item {
    font-size: clamp(0.88rem, 4vw, 1.1rem) !important;
  }
  .idyllic-social-icons a {
    width: 46px !important;
    height: 46px !important;
  }
}

/* ══════════════════════════════════════════════════════
   HIRE ME — IMAGE REFERENCE STYLE (3-column footer grid)
   SITE MAP | FOLLOW | CONTACT layout
   ══════════════════════════════════════════════════════ */

.idyllic-hireme {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 7vw, 7rem) clamp(3.5rem, 6vw, 5rem) !important;
  background: #0d0d0d !important;
  border-top: 2px solid var(--gold) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* 3-column grid layout */
.idyllic-hireme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

/* Column heading — "SITE MAP", "FOLLOW", "CONTACT" style */
.idyllic-hireme-col-title {
  font-family: var(--font-display), 'Bebas Neue', sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  font-style: normal;
}

/* Links / items in each column */
.idyllic-hireme-col-item {
  display: block;
  font-family: var(--font-display), 'Bebas Neue', sans-serif;
  font-size: clamp(0.75rem, 1.3vw, 0.9rem);
  letter-spacing: 3px;
  color: var(--cream);
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 0.7rem;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}
.idyllic-hireme-col-item:hover { color: var(--gold); }

/* Social links row — underline style like image */
.idyllic-hireme-col-item.social-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.6rem;
  font-size: clamp(0.68rem, 1.1vw, 0.8rem);
  letter-spacing: 3px;
  color: var(--cream);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  width: fit-content;
}
.idyllic-hireme-col-item.social-item:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Contact items — email, phone */
.idyllic-hireme-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.7rem;
  font-family: var(--font-display), 'Bebas Neue', sans-serif;
  font-size: clamp(0.65rem, 1.05vw, 0.78rem);
  letter-spacing: 2.5px;
  color: var(--cream);
  text-transform: uppercase;
  width: fit-content;
  max-width: 100%;
  word-break: break-all;
}

/* Hide old hire me elements that conflict */
.idyllic-hireme-title,
.idyllic-hireme-info,
.idyllic-hireme-cities,
.idyllic-hireme-divider,
.idyllic-hireme-social-row,
.idyllic-hireme-actions {
  display: none !important;
}

/* Keep reviews visible */
.idyllic-reviews-block {
  display: block !important;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 2.5rem;
  margin-top: 0;
}

/* Mobile */
@media (max-width: 700px) {
  .idyllic-hireme-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2rem;
  }
}
@media (max-width: 480px) {
  .idyllic-hireme-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .idyllic-hireme {
    padding: 2.5rem 1.4rem !important;
  }
}

/* ══════════════════════════════════════════
   HIRE ME GRID — BIGGER FONTS, MORE SPACING
   ══════════════════════════════════════════ */

/* Section heading (HIRE ME / FOLLOW / CONTACT) */
.idyllic-hireme-col-title {
  font-size: clamp(0.65rem, 1vw, 0.78rem) !important;
  letter-spacing: 6px !important;
  margin-bottom: 1.8rem !important;
  color: var(--gold) !important;
}

/* Nav links (PORTFOLIO, VIDEOS, WRITE A REVIEW) */
.idyllic-hireme-col-item {
  font-size: clamp(0.82rem, 1.5vw, 1rem) !important;
  letter-spacing: 3.5px !important;
  margin-bottom: 1rem !important;
  color: var(--cream) !important;
}

/* Social bordered boxes */
.idyllic-hireme-col-item.social-item {
  font-size: clamp(0.72rem, 1.2vw, 0.88rem) !important;
  letter-spacing: 3px !important;
  padding: 0.35rem 1rem !important;
  margin-bottom: 0.8rem !important;
}

/* Contact bordered boxes */
.idyllic-hireme-contact-item {
  font-size: clamp(0.7rem, 1.1vw, 0.85rem) !important;
  letter-spacing: 2px !important;
  padding: 0.35rem 1rem !important;
  margin-bottom: 0.8rem !important;
}

/* Grid gap + container padding — more breathing room */
.idyllic-hireme-grid {
  gap: 3rem 5rem !important;
  margin-bottom: 3.5rem !important;
}

.idyllic-hireme {
  padding: clamp(4rem, 8vw, 7rem) clamp(2.5rem, 8vw, 8rem) clamp(4rem, 7vw, 6rem) !important;
}

/* ══════════════════════════════════════════
   HIRE ME FINAL FIX — LARGE READABLE TEXT
   ══════════════════════════════════════════ */

.idyllic-hireme-col-title {
  font-family: var(--font-display), 'Bebas Neue', sans-serif !important;
  font-size: 1.6rem !important;
  letter-spacing: 4px !important;
  color: var(--gold) !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.idyllic-hireme-col-item {
  font-family: var(--font-body), 'DM Sans', sans-serif !important;
  font-size: 1.05rem !important;
  letter-spacing: 1px !important;
  font-weight: 400 !important;
  color: rgba(245,240,232,0.85) !important;
  text-transform: uppercase !important;
  margin-bottom: 1.1rem !important;
  display: block !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  transition: color 0.2s !important;
  text-decoration: none !important;
}
.idyllic-hireme-col-item:hover { color: var(--gold) !important; }

.idyllic-hireme-col-item.social-item {
  font-size: 0.95rem !important;
  letter-spacing: 1.5px !important;
  border: 1px solid rgba(201,168,76,0.4) !important;
  padding: 0.4rem 1.1rem !important;
  margin-bottom: 0.85rem !important;
  width: fit-content !important;
  display: inline-flex !important;
}
.idyllic-hireme-col-item.social-item:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.idyllic-hireme-contact-item {
  font-family: var(--font-body), 'DM Sans', sans-serif !important;
  font-size: 0.92rem !important;
  letter-spacing: 1px !important;
  font-weight: 400 !important;
  color: rgba(245,240,232,0.85) !important;
  border: 1px solid rgba(201,168,76,0.35) !important;
  padding: 0.4rem 1.1rem !important;
  margin-bottom: 0.85rem !important;
  display: block !important;
  width: fit-content !important;
  text-decoration: none !important;
  text-transform: none !important;
  word-break: break-all !important;
  transition: border-color 0.2s, color 0.2s !important;
}
.idyllic-hireme-contact-item:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.idyllic-hireme-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 2rem 6rem !important;
  margin-bottom: 4rem !important;
  align-items: start !important;
}

.idyllic-hireme {
  padding: 5rem clamp(2.5rem, 7vw, 7rem) 5rem !important;
}

@media (max-width: 900px) {
  .idyllic-hireme-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem 3rem !important;
  }
}
@media (max-width: 550px) {
  .idyllic-hireme-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .idyllic-hireme {
    padding: 3rem 1.5rem 3rem !important;
  }
  .idyllic-hireme-col-title {
    font-size: 1.3rem !important;
  }
  .idyllic-hireme-col-item {
    font-size: 0.9rem !important;
  }
}

/* ── FOLLOW column — SVG logo icons ── */
.hireme-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.3rem;
}
.hireme-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: rgba(245,240,232,0.75);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  border: none !important;
  background: none !important;
  padding: 0 !important;
}
.hireme-social-icon:hover {
  color: var(--gold);
  transform: translateY(-3px);
}
.hireme-social-icon svg {
  width: 28px;
  height: 28px;
}
