/* ============================================================
   ARTISIA — Stylesheet
   ============================================================ */

:root {
  --navy: #1E2A5A;
  --violet: #8B5CF6;
  --lavender: #C4B5FD;
  --bg-dark: #0F172A;
  --bg-mid: #1E3A8A;
  --text: #F8FAFC;
  --text-muted: #94A3B8;
  --glass: rgba(30, 42, 90, 0.4);
  --glass-border: rgba(139, 92, 246, 0.25);
  --glow: rgba(139, 92, 246, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0D1B4B 40%, #1a2560 70%, var(--bg-mid) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── Particles ─── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

section, nav { position: relative; z-index: 1; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }

/* ─── Navbar ─── */
nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 60px;
  z-index: 1000;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.12), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 65px;
  width: auto;
}

.brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #F8FAFC 0%, var(--lavender) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: rgba(248,250,252,0.75);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--lavender); background: rgba(139,92,246,0.15); }
.nav-links a.active {
  color: var(--lavender);
  background: rgba(139,92,246,0.18);
  box-shadow: inset 0 0 0 1px rgba(139,92,246,0.35);
}

.nav-cta {
  background: linear-gradient(135deg, #6D28D9, #8B5CF6, #A78BFA);
  color: white !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(139,92,246,0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(139,92,246,0.7);
  background: linear-gradient(135deg, #7C3AED, #9333EA, #C084FC);
}

/* ─── Hamburger ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lavender);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.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); }

/* ─── Mobile Menu ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(9, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--glass-border);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.mobile-menu ul a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.mobile-menu ul a:hover {
  background: rgba(139,92,246,0.15);
  border-color: var(--glass-border);
  color: var(--lavender);
}

.mobile-cta {
  margin-top: 16px;
  display: inline-block;
  text-align: center;
}

/* ─── Hero ─── */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 60px;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  font-family: 'Cinzel', serif;
  width: fit-content;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge::before {
  content: '✦';
  color: var(--violet);
  animation: spin 4s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #F8FAFC 0%, #E2D9FE 50%, var(--lavender) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 540px;
  animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(139,92,246,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(139,92,246,0.5);
  background: linear-gradient(135deg, #A78BFA 0%, #7C3AED 100%);
}

.btn-full { width: 100%; justify-content: center; margin-top: 12px; }

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(139,92,246,0.15);
  border-color: var(--lavender);
  transform: translateY(-2px);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInUp 1s 0.2s ease both;
}

.hero-mascot-wrap {
  position: relative;
  width: 460px;
  height: 460px;
}

.hero-graphic-img {
  width: 450px;
  height: 450px;
  border-radius: 20px;
}

.mascot-aura {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 55%, rgba(139,92,246,0.35) 0%, rgba(109,40,217,0.15) 45%, transparent 70%);
  border-radius: 50%;
  animation: pulseAura 4s ease-in-out infinite alternate;
}

@keyframes pulseAura {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.05); opacity: 1; }
}

.mascot-ring {
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(139,92,246,0.25);
  border-radius: 50%;
  animation: spinRing 25s linear infinite;
}

@keyframes spinRing { to { transform: rotate(360deg); } }

.float-particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp infinite linear;
}

@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(-80px) scale(0.8); opacity: 0; }
}

/* ─── Section ─── */
.section {
  padding: 120px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--lavender);
  text-transform: uppercase;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-top: 8px;
  background: linear-gradient(135deg, #FFF 30%, var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── About ─── */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--lavender);
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.about-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card-row-secondary {
  margin-top: 24px;
}

.about-mini-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.about-mini-card:hover {
  border-color: rgba(139,92,246,0.4);
  background: rgba(30, 42, 90, 0.6);
  transform: translateY(-2px);
}

.about-mini-card .icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

.about-mini-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.about-mini-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139,92,246,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(139,92,246,0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--lavender);
}

.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* ─── Process ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 40px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3) 20%, rgba(139,92,246,0.3) 80%, transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.step-num {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--violet);
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(139,92,246,0.4);
}

.step h4 { font-family: 'Cinzel', serif; font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

.process-wrap { margin-top: 100px; }

/* ─── Portfolio New ─── */
#portfolio-new {
  padding: 120px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.pf-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 52px;
}

.pf-tab {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  padding: 7px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pf-tab:hover, .pf-tab.active {
  background: rgba(139,92,246,0.2);
  border-color: var(--violet);
  color: var(--lavender);
  box-shadow: 0 0 16px rgba(139,92,246,0.2);
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pf-card.hidden { display: none; }

.pf-card {
  background: rgba(30,42,90,0.4);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.pf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.55);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 24px rgba(139,92,246,0.18);
}

/* Card thumbnail — full image visible, no cropping, blurred fill for gaps */
.pf-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(30,42,90,0.6);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-thumb::before,
.pf-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  filter: blur(22px) brightness(0.55) saturate(1.15);
  transform: scale(1.25);
}

.pf-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: default;
}

.pf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}


.pf-card:hover .pf-thumb img { transform: scale(1.03); }

.pf-info {
  padding: 20px 22px;
  background: rgba(15,23,42,0.85);
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pf-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.pf-info p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* ─── Popup ─── */
.pf-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9,13,26,0.88);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pf-overlay.open { opacity: 1; pointer-events: all; }

.pf-popup {
  background: rgba(15,23,42,0.97);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 24px;
  padding: 40px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.pf-overlay.open .pf-popup { transform: translateY(0); }

.pf-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pf-close:hover { background: rgba(139,92,246,0.2); border-color: var(--violet); color: #fff; }

.pf-popup-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--lavender);
  margin-bottom: 28px;
  padding-right: 40px;
}

/* Popup images — full image visible, no cropping, blurred fill for gaps */
.pf-popup-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pf-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 14px;
  border: 1px solid rgba(139,92,246,0.2);
  overflow: hidden;
  background: rgba(15,23,42,0.6);
  transition: all 0.3s ease;
}

.pf-img-wrap:hover {
  border-color: rgba(139,92,246,0.5);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.pf-popup-imgs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.pf-popup-imgs video {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(139,92,246,0.2);
  display: block;
  background: #000;
}

.pf-popup::-webkit-scrollbar { width: 4px; }
.pf-popup::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.4); border-radius: 2px; }

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.7rem;
  color: var(--lavender);
  margin-bottom: 18px;
}

.contact-info p { color: var(--text-muted); line-height: 1.6; font-size: 1rem; }

.info-list { margin: 32px 0; display: flex; flex-direction: column; gap: 16px; }

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.social-link:hover { color: var(--lavender); }

.queue-note { font-size: 0.9rem !important; line-height: 1.5 !important; }

.commission-form {
  background: rgba(30, 42, 90, 0.25);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--lavender);
}

.form-control {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  /* cursor: poin; */
}

.form-control:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 12px rgba(139,92,246,0.25);
  background: rgba(15, 23, 42, 0.8);
}

.option-navy { background: var(--navy); }

/* ─── Footer ─── */
#footer {
  background: #090D1A;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  padding: 80px 48px 40px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--lavender);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.3s ease; }
.footer-col ul a:hover { color: var(--lavender); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

.footer-tagline {
  color: var(--violet) !important;
  font-style: normal;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em;
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Divider ─── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3), transparent);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  #portfolio-new { padding: 80px 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile */
@media (max-width: 900px) {
  nav { width: calc(100% - 24px); padding: 10px 18px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  #home {
    flex-direction: column;
    padding: 120px 24px 60px;
    text-align: center;
    gap: 40px;
  }

  .hero-buttons { justify-content: center; }
  .hero-right { display: none; }
  .hero-sub { max-width: 100%; }

  .section { padding: 80px 24px; }
  #portfolio-new { padding: 80px 24px; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; }

  .pf-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pf-thumb { height: 180px; }

  .pf-popup { padding: 28px 20px; }
  .pf-popup-title { font-size: 1.2rem; }
  .pf-popup-imgs { grid-template-columns: 1fr; }

  .commission-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  #footer { padding: 60px 24px 32px; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .pf-grid { grid-template-columns: 1fr; }
  .pf-thumb { height: 200px; }
  .about-card-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
}