/* ============================================================
   style.css — Design With Satyam Portfolio
   Dark luxury aesthetic — amber-gold accent — Syne + Inter
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:        #080808;
  --bg-alt:    #0d0d0d;
  --surface:   #141414;
  --surface-2: #1a1a1a;
  --border:    rgba(255,255,255,0.07);
  --gold:      #f59e0b;
  --gold-dim:  #d97706;
  --gold-glow: rgba(245,158,11,0.18);
  --white:     #ffffff;
  --muted:     #71717a;
  --text:      #e4e4e7;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 40px rgba(0,0,0,0.6);
  --transition:0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display:'Syne', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); outline: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; color: var(--white); }
h1 { font-size: clamp(3rem, 8vw, 7rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h3 { font-size: 1.4rem; }
p  { color: var(--text); }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 7rem 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: none;
}
.btn::after {
  content:''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0; transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary  { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold-dim); transform: translateY(-2px); box-shadow: 0 8px 30px var(--gold-glow); }
.btn-outline  { border: 1.5px solid var(--border); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost    { color: var(--muted); font-size: 0.9rem; padding: 0.85rem 1.25rem; }
.btn-ghost:hover { color: var(--white); }
.full-width   { width: 100%; justify-content: center; }

/* ── Custom Cursor ──────────────────────────────────────────── */
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(245,158,11,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s, width 0.2s, height 0.2s, border-color 0.2s;
}
#cursor-ring.hover { width: 56px; height: 56px; border-color: var(--gold); }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ── Scroll Progress ─────────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), #fff8);
  z-index: 10000;
  transition: width 0.1s;
}

/* ── Preloader ──────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s 0.3s, visibility 0.6s 0.3s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner  { text-align: center; }
.pre-logo         { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 1.5rem; }
.pre-bar          { width: 200px; height: 2px; background: var(--surface-2); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.pre-fill         { height: 100%; background: var(--gold); animation: preload 1.8s ease forwards; }
@keyframes preload { from { width: 0; } to { width: 100%; } }

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.35s, padding 0.35s, transform 0.4s;
  background: transparent;
}
#navbar.scrolled  { background: rgba(8,8,8,0.85); backdrop-filter: blur(20px); padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
#navbar.hidden-nav { transform: translateY(-100%); }
.nav-inner        { display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; }
.nav-logo         { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.nav-logo span    { color: var(--gold); }
.nav-links        { display: flex; align-items: center; gap: 2rem; }
.nav-link         { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.25s; position: relative; padding-bottom: 2px; }
.nav-link::after  { content:''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.hamburger        { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span   { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 5rem;
}
#hero-canvas { position: absolute; inset: 0; opacity: 0.15; }
.hero-blobs   { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25;
  animation: floatBlob 12s ease-in-out infinite alternate;
}
.blob-1 { width: 500px; height: 500px; background: #f59e0b; top: -100px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: #7c3aed; bottom: -80px; left: -80px;  animation-delay: -4s; }
.blob-3 { width: 300px; height: 300px; background: #0ea5e9; top: 50%; right: 30%;         animation-delay: -8s; }
@keyframes floatBlob {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,40px) scale(1.1); }
}
.hero-content {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero-name    { line-height: 1; margin-bottom: 1rem; }
.hero-role-wrap { display: flex; align-items: center; gap: 0; font-family: var(--font-display); font-size: clamp(1.1rem,2.5vw,1.5rem); font-weight: 600; color: var(--muted); margin-bottom: 1.5rem; }
.hero-role-text  { color: var(--gold); }
.hero-role-cursor { color: var(--gold); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero-tagline { font-size: clamp(1rem,1.5vw,1.15rem); color: var(--muted); max-width: 500px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-ctas    { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats   { display: flex; gap: 2rem; }
.stat-card    { text-align: left; }
.stat-val     { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--white); }
.stat-label   { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.05em; }

/* Profile visual */
.hero-visual  { position: relative; display: flex; align-items: center; justify-content: center; }
.profile-frame {
  width: 360px; height: 420px;
  border-radius: 24px; overflow: hidden;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
}
.profile-frame img { width: 100%; height: 100%; object-fit: cover; }
.profile-frame img[src=""] { display: none; }
.profile-ring {
  position: absolute; inset: -8px;
  border-radius: 30px;
  border: 1.5px solid rgba(245,158,11,0.25);
  animation: ringPulse 3s ease-in-out infinite;
}
.profile-glow {
  position: absolute; inset: -2px; border-radius: 26px;
  box-shadow: 0 0 60px rgba(245,158,11,0.12);
}
@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.03); opacity: 0.8; }
}
.float-badge {
  position: absolute;
  background: rgba(20,20,20,0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  animation: floatY 3s ease-in-out infinite alternate;
}
.badge-1 { top: 10%; left: -10%; animation-delay: 0s; }
.badge-2 { bottom: 15%; right: -8%; animation-delay: -1.5s; }
@keyframes floatY { from { transform: translateY(0); } to { transform: translateY(-12px); } }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.15em; color: var(--muted);
  animation: fadeInUp 1s 2s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Reveal animations ─────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── About ──────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 3/4; background: var(--surface); }
.about-img-accent {
  position: absolute; inset: 16px 16px -16px -16px;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(245,158,11,0.25);
  z-index: -1;
}
.about-float-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 1rem 1.25rem; border-radius: var(--radius);
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow);
}
.about-float-card span { font-size: 1.5rem; color: var(--gold); }
.about-float-card strong { display: block; font-family: var(--font-display); font-size: 0.95rem; color: var(--white); }
.about-float-card small  { color: var(--muted); font-size: 0.75rem; }
.about-body h2 { margin-bottom: 1.25rem; }
.about-desc { color: var(--muted); line-height: 1.9; margin-bottom: 1.75rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.tag {
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem; color: var(--muted);
  transition: var(--transition);
}
.tag:hover { border-color: var(--gold); color: var(--gold); }
.what-i-do { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.do-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  transition: var(--transition);
}
.do-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.do-card span  { color: var(--gold); font-size: 1.1rem; }
.do-card p     { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--white); margin: 0; }

/* ── Services ───────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: none;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(245,158,11,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(245,158,11,0.08); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 1.25rem; display: block; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--white); }
.service-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── Skills ─────────────────────────────────────────────────── */
.skills-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.skill-chip {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; font-size: 0.9rem; font-weight: 500; color: var(--text);
  transition: var(--transition);
  animation: fadeInUp 0.5s ease both;
}
.skill-chip:hover  { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.skill-cat         { font-size: 0.65rem; color: var(--gold); background: var(--gold-glow); padding: 1px 6px; border-radius: 4px; }

/* ── Timeline ───────────────────────────────────────────────── */
.timeline         { position: relative; max-width: 800px; margin: 0 auto; padding-left: 2.5rem; }
.timeline::before { content:''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item    { position: relative; padding: 0 0 3rem 2rem; }
.timeline-item::before {
  content:''; position: absolute; left: -2.5rem;
  top: 4px; width: 12px; height: 12px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 4px var(--gold-glow);
}
.tl-period   { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.tl-company  { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.tl-location { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; }
.tl-roles    { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.tl-role-tag { padding: 0.25rem 0.75rem; background: var(--gold-glow); border: 1px solid rgba(245,158,11,0.3); border-radius: 999px; font-size: 0.75rem; color: var(--gold); font-weight: 500; }
.tl-points   { list-style: none; }
.tl-points li { position: relative; padding-left: 1.25rem; font-size: 0.9rem; color: var(--muted); margin-bottom: 0.5rem; line-height: 1.7; }
.tl-points li::before { content:'—'; position: absolute; left: 0; color: var(--gold); }

/* ── Education ──────────────────────────────────────────────── */
.edu-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; }
.edu-card  { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; transition: var(--transition); }
.edu-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-4px); }
.edu-period { font-size: 0.75rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.edu-degree { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
.edu-inst   { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.75rem; }
.edu-result { display: inline-block; padding: 0.25rem 0.75rem; background: var(--gold-glow); border: 1px solid rgba(245,158,11,0.3); border-radius: 999px; font-size: 0.78rem; color: var(--gold); }

/* ── Portfolio ──────────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  transition: var(--transition); background: transparent;
  cursor: none;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.25rem; }
.port-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; cursor: none;
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.port-card:hover { transform: scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.port-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.port-card:hover img { transform: scale(1.08); }
.port-card .port-no-thumb {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--border);
}
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; transform: translateY(8px); opacity: 0;
  transition: var(--transition);
}
.port-card:hover .port-overlay { opacity: 1; transform: translateY(0); }
.port-cat-badge { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.port-overlay h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; }
.port-view { font-size: 0.8rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 0.35rem; }

/* Always-visible label bar on cards */
.port-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  transition: var(--transition);
}
.port-card:hover .port-label { opacity: 0; }
.port-label h4 { font-size: 0.9rem; color: var(--white); font-weight: 600; }

/* ── Featured Projects ──────────────────────────────────────── */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 1.5rem; }
.feat-card     { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); cursor: none; }
.feat-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.5); }
.feat-thumb    { aspect-ratio: 16/9; background: var(--surface-2); overflow: hidden; position: relative; }
.feat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.feat-card:hover .feat-thumb img { transform: scale(1.06); }
.feat-thumb-empty { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--border); }
.feat-body     { padding: 1.5rem; }
.feat-meta     { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.feat-cat      { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; background: var(--gold-glow); padding: 2px 8px; border-radius: 4px; }
.feat-year     { font-size: 0.75rem; color: var(--muted); }
.feat-body h3  { margin-bottom: 0.5rem; font-size: 1.15rem; }
.feat-body p   { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ── Testimonials ───────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.25rem; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  transition: var(--transition);
}
.testi-card:hover { border-color: rgba(245,158,11,0.2); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text  { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--surface-2); border: 1.5px solid var(--border); }
.testi-name   { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--white); }
.testi-company { font-size: 0.78rem; color: var(--muted); }

/* ── CTA Band ───────────────────────────────────────────────── */
.cta-band { background: var(--bg); }
.cta-band-inner {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(245,158,11,0.06) 100%);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem; text-align: center;
}
.cta-band-inner h2 { font-size: clamp(1.75rem,4vw,3rem); margin-bottom: 2rem; }
.cta-band-inner em { font-style: normal; color: var(--gold); }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info  { padding-top: 0.5rem; }
.contact-item  { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-icon  { font-size: 1.25rem; color: var(--gold); margin-top: 0.1rem; }
.contact-item small { display: block; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; }
.contact-item a { color: var(--white); font-weight: 500; transition: color 0.25s; }
.contact-item a:hover { color: var(--gold); }
.copy-btn { background: var(--gold-glow); border: 1px solid rgba(245,158,11,0.3); border-radius: 6px; color: var(--gold); font-size: 0.8rem; padding: 2px 8px; margin-left: 0.5rem; transition: var(--transition); cursor: none; }
.copy-btn:hover { background: var(--gold); color: #000; }
.contact-socials { display: flex; flex-direction: column; gap: 0.6rem; }
.soc-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: var(--transition); }
.soc-btn::before { content: '→'; color: var(--gold); }
.soc-btn:hover { color: var(--white); }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.45rem; letter-spacing: 0.05em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); color: var(--white); font-size: 0.9rem;
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group select option { background: var(--surface); }
.form-group textarea { resize: vertical; }

/* ── Footer ─────────────────────────────────────────────────── */
#footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.75rem; max-width: 260px; }
.footer-links, .footer-social { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links strong, .footer-social strong { color: var(--white); font-family: var(--font-display); font-size: 0.9rem; margin-bottom: 0.25rem; }
.footer-links a, .footer-social a { font-size: 0.85rem; color: var(--muted); transition: color 0.25s; }
.footer-links a:hover, .footer-social a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }
.admin-link { font-size: 0.78rem; color: var(--border); transition: color 0.25s; }
.admin-link:hover { color: var(--gold); }
#footer-year { color: var(--gold); }

/* ── Back to Top ─────────────────────────────────────────────── */
#back-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: #000;
  font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 500; cursor: none;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px var(--gold-glow);
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover   { background: var(--gold-dim); }

/* ── WhatsApp float ─────────────────────────────────────────── */
#wa-float {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 500; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: transform 0.25s;
}
#wa-float:hover { transform: scale(1.1); }

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9); backdrop-filter: blur(16px);
  z-index: 8000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  padding: 2rem;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--white); font-size: 1rem; width: 40px; height: 40px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: none; transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.lightbox-content {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  max-width: 860px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  max-height: 90vh;
}
#lb-img   { width: 100%; height: 100%; object-fit: cover; }
.lb-body  { padding: 2rem; overflow-y: auto; }
.lb-cat   { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 0.75rem; }
.lb-body h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.lb-body p  { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.25rem; }
.lb-meta    { display: flex; gap: 1rem; margin-bottom: 1.5rem; font-size: 0.8rem; color: var(--muted); }
.lb-meta span:not(:empty)::before { content: '· '; }
.lb-meta span:first-child::before { content: ''; }

/* ── Toast ───────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 5rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--white); padding: 0.85rem 1.75rem;
  border-radius: 999px; font-size: 0.9rem; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9000; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-color: var(--gold); }
.toast.error   { border-color: #ef4444; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-ctas    { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-tagline { margin: 0 auto 2.5rem; }
  .hero-visual  { justify-content: center; }
  .profile-frame { width: 280px; height: 340px; }
  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .lightbox-content { grid-template-columns: 1fr; }
  #lb-img       { max-height: 300px; }
}
@media (max-width: 768px) {
  .section      { padding: 5rem 0; }
  h2            { font-size: clamp(1.75rem,6vw,2.5rem); }
  .nav-links    { position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px; height: 100vh; background: var(--bg-alt); flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem; transition: right 0.4s cubic-bezier(0.4,0,0.2,1); border-left: 1px solid var(--border); z-index: 999; }
  .nav-links.open { right: 0; }
  .hamburger    { display: flex; z-index: 1000; }
  .footer-grid  { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .what-i-do    { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-ctas    { flex-direction: column; align-items: center; }
  .what-i-do    { grid-template-columns: 1fr; }
  .hero-stats   { gap: 1.25rem; }
}
