/* ===================================================
   DANCER PORTFOLIO — DESIGN SYSTEM
   Dark luxury aesthetic with amber/gold accents
   =================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colour palette */
  --clr-bg:         #0a0a0a;
  --clr-bg-alt:     #111111;
  --clr-surface:    #161616;
  --clr-surface-2:  #1c1c1c;
  --clr-border:     rgba(255, 255, 255, 0.06);
  --clr-text:       #f5f0e8;
  --clr-text-muted: #8a8578;
  --clr-accent:     #d4a24e;
  --clr-accent-2:   #e8b95a;
  --clr-amber:      #f0a500;
  --clr-gold:       #c9962b;
  --clr-warm:       #2a2117;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #d4a24e 0%, #e8b95a 50%, #c9962b 100%);
  --grad-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
  --grad-surface: linear-gradient(145deg, rgba(212,162,78,0.06) 0%, rgba(10,10,10,0) 60%);

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body:    'Outfit', 'Segoe UI', sans-serif;

  /* Spacing scale */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 8rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-out);
}

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-md);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-sm);
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: var(--sp-md);
}

.section-heading em {
  font-style: italic;
  color: var(--clr-accent);
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-children.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-children.visible > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-children.visible > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-children.visible > *:nth-child(8) { transition-delay: 0.75s; }

.reveal-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   NAVIGATION
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--sp-sm) 0;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--clr-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--clr-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-bg);
  background: var(--grad-gold);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: none;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out);
}

.nav-links a.nav-cta::after { display: none; }

.nav-links a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 162, 78, 0.3);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--sp-3xl) 0 var(--sp-2xl);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 162, 78, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(240, 165, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-right: var(--sp-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 162, 78, 0.1);
  border: 1px solid rgba(212, 162, 78, 0.2);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-md);
  animation: fadeInDown 0.8s var(--ease-out) 0.2s both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: var(--sp-md);
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero h1 .line {
  display: block;
}

.hero h1 .highlight {
  color: var(--clr-accent);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: line-grow 0.8s var(--ease-out) 1s forwards;
}

@keyframes line-grow {
  to { transform: scaleX(1); }
}

.hero-description {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: var(--sp-lg);
  animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-gold);
  color: var(--clr-bg);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 162, 78, 0.35);
}

.btn-primary .arrow {
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.btn-secondary:hover {
  border-color: var(--clr-accent);
  background: rgba(212, 162, 78, 0.08);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: var(--sp-lg);
  animation: fadeInUp 0.8s var(--ease-out) 0.9s both;
}

.hero-stat {
  position: relative;
  padding-left: var(--sp-sm);
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}

.hero-stat .number {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1.2;
}

.hero-stat .label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero image area */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s var(--ease-out) 0.4s both;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--grad-gold);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.4;
}

.hero-image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  filter: contrast(1.05) brightness(1.02);
}

/* Floating elements around hero image */
.hero-float {
  position: absolute;
  background: rgba(22, 22, 22, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  animation: float 4s ease-in-out infinite;
}

.hero-float-1 {
  top: 10%;
  right: -40px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 15%;
  left: -30px;
  animation-delay: 1s;
}

.hero-float .float-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.hero-float .float-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-float .float-value {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===================================================
   FEATURED QUOTE
   =================================================== */
.quote-section {
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 162, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.quote-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: var(--ff-heading);
  font-size: 6rem;
  color: var(--clr-accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -2rem;
}

.quote-text {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.5;
}

.quote-text span {
  color: var(--clr-accent);
}

.quote-divider {
  width: 60px;
  height: 2px;
  background: var(--grad-gold);
  margin: var(--sp-md) auto 0;
  border-radius: 2px;
}

/* ===================================================
   SERVICES SECTION
   =================================================== */
.services {
  padding: var(--sp-3xl) 0;
  position: relative;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.service-card {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 162, 78, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 162, 78, 0.06);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 162, 78, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-md);
  font-size: 1.5rem;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.service-card:hover .service-icon {
  background: rgba(212, 162, 78, 0.18);
  transform: scale(1.05);
}

.service-title {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--sp-xs);
  color: var(--clr-text);
}

.service-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ===================================================
   ABOUT SECTION
   =================================================== */
.about {
  padding: var(--sp-3xl) 0;
  position: relative;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.about-image-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  transition: transform 0.6s var(--ease-out);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Decorative frame around about image */
.about-image-frame {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(212, 162, 78, 0.15);
  border-radius: calc(var(--radius-lg) + 8px);
  pointer-events: none;
}

.about-content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: var(--sp-md);
}

.about-content h2 em {
  font-style: italic;
  color: var(--clr-accent);
}

.about-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: var(--sp-sm);
}

/* ===================================================
   EXPERTISE PILLS
   =================================================== */
.expertise-section {
  margin-top: var(--sp-xl);
}

.expertise-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--sp-sm);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 162, 78, 0.08);
  border: 1px solid rgba(212, 162, 78, 0.15);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-accent-2);
  letter-spacing: 0.03em;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-spring), border-color 0.3s var(--ease-out);
}

.pill:hover {
  background: rgba(212, 162, 78, 0.15);
  border-color: rgba(212, 162, 78, 0.3);
  transform: translateY(-2px);
}

.pill .pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-accent);
}

/* ===================================================
   EXPERIENCE / TIMELINE
   =================================================== */
.experience {
  padding: var(--sp-3xl) 0;
}

.experience-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-accent), rgba(212, 162, 78, 0.1));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: var(--sp-xl);
  padding-bottom: var(--sp-md);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -6px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clr-bg);
  border: 2px solid var(--clr-accent);
  z-index: 1;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.timeline-item:hover .timeline-dot {
  background: var(--clr-accent);
  box-shadow: 0 0 20px rgba(212, 162, 78, 0.4);
}

.timeline-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-md) var(--sp-lg);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.timeline-item:hover .timeline-card {
  border-color: rgba(212, 162, 78, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.timeline-role {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.25rem;
}

.timeline-company {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-accent);
  margin-bottom: var(--sp-xs);
}

.timeline-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery {
  padding: var(--sp-3xl) 0;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: var(--sp-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-md);
}

.gallery-overlay span {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--clr-text);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Gallery Video Items */
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(212, 162, 78, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.4s var(--ease-spring), background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(212, 162, 78, 0.3);
  pointer-events: none;
}

.gallery-play-btn span {
  font-size: 1.2rem;
  color: var(--clr-bg);
  margin-left: 3px;
}

.gallery-item--video:hover .gallery-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: rgba(212, 162, 78, 1);
  box-shadow: 0 6px 30px rgba(212, 162, 78, 0.5);
}

/* ===================================================
   CLOSING QUOTE (About)
   =================================================== */
.closing-quote {
  padding: var(--sp-2xl) 0;
  text-align: center;
}

.closing-quote blockquote {
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--clr-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.closing-quote blockquote em {
  color: var(--clr-accent);
  font-style: italic;
}

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  padding: var(--sp-3xl) 0;
}

.cta-card {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid rgba(212, 162, 78, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--sp-3xl) var(--sp-xl);
  text-align: center;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 162, 78, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: var(--sp-sm);
  position: relative;
}

.cta-card h2 em {
  font-style: italic;
  color: var(--clr-accent);
}

.cta-card p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto var(--sp-lg);
  line-height: 1.7;
  position: relative;
}

/* CTA Contact Info */
.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
  flex-wrap: wrap;
  position: relative;
}

.cta-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 162, 78, 0.06);
  border: 1px solid rgba(212, 162, 78, 0.12);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.4rem;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.cta-contact-item:hover {
  background: rgba(212, 162, 78, 0.12);
  border-color: rgba(212, 162, 78, 0.3);
  transform: translateY(-2px);
}

.cta-contact-icon {
  font-size: 1.1rem;
}

.cta-contact-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
  letter-spacing: 0.02em;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--sp-sm);
  position: relative;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  padding: var(--sp-xl) 0 var(--sp-md);
  border-top: 1px solid var(--clr-border);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-logo span {
  color: var(--clr-accent);
}

.footer-text {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.footer-social {
  display: flex;
  gap: var(--sp-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), background 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: rgba(212, 162, 78, 0.08);
  transform: translateY(-3px);
}

/* ===================================================
   LIGHTBOX
   =================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-spring);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-video {
  max-width: 85%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-spring);
  display: none;
}

.lightbox.active .lightbox-video {
  transform: scale(1);
}

/* Toggle between image and video in lightbox */
.lightbox.video .lightbox-img {
  display: none;
}

.lightbox.video .lightbox-video {
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--clr-text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s var(--ease-out);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ===================================================
   KEYFRAME ANIMATIONS
   =================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===================================================
   RESPONSIVE — TABLET
   =================================================== */
@media (max-width: 1024px) {
  .hero {
    padding: 6rem 0 var(--sp-xl);
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-image-wrapper img {
    height: 460px;
  }

  .hero-float { display: none; }

  .services {
    padding: var(--sp-2xl) 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .about {
    padding: var(--sp-2xl) 0;
  }

  .about .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image-wrapper img {
    height: 400px;
  }

  .expertise-pills {
    justify-content: center;
  }

  .gallery {
    padding: var(--sp-2xl) 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ===================================================
   RESPONSIVE — MOBILE
   =================================================== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(16, 16, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--sp-lg);
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid var(--clr-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    min-height: 0;
    padding: 5rem 0 var(--sp-xl);
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-image-wrapper img {
    height: 340px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--sp-md);
  }

  .hero-stat .number {
    font-size: 1.4rem;
  }

  .hero-stat .label {
    font-size: 0.65rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .services {
    padding: var(--sp-xl) 0;
  }

  .service-card {
    padding: var(--sp-lg) var(--sp-md);
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-desc {
    font-size: 0.9rem;
  }

  .about {
    padding: var(--sp-xl) 0;
  }

  .about-image-wrapper img {
    height: 320px;
  }

  .about-content h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .experience {
    padding: var(--sp-xl) 0;
  }

  .timeline-item {
    padding-left: var(--sp-lg);
    padding-bottom: var(--sp-md);
  }

  .timeline-role {
    font-size: 1rem;
  }

  .timeline-desc {
    font-size: 0.85rem;
  }

  .gallery {
    padding: var(--sp-xl) 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-overlay span {
    font-size: 0.95rem;
  }

  .closing-quote {
    padding: var(--sp-xl) 0;
  }

  .cta-section {
    padding: var(--sp-xl) 0;
  }

  .cta-card {
    padding: var(--sp-xl) var(--sp-md);
  }

  .cta-card h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .cta-contact-info {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-xs);
  }

  .cta-contact-item {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .footer .container {
    flex-direction: column;
    gap: var(--sp-sm);
    text-align: center;
  }
}

/* ===================================================
   RESPONSIVE — VERY SMALL SCREENS
   =================================================== */
@media (max-width: 480px) {
  .container {
    padding-inline: var(--sp-sm);
  }

  .hero {
    padding: 4.5rem 0 var(--sp-lg);
  }

  .hero h1 {
    font-size: clamp(1.5rem, 9vw, 2rem);
  }

  .hero-description {
    font-size: 0.88rem;
  }

  .hero-image-wrapper img {
    height: 280px;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
  }

  .hero-stat .number {
    font-size: 1.2rem;
  }

  .hero-stat .label {
    font-size: 0.6rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    font-size: 0.8rem;
    padding: 0.75rem 1.5rem;
  }

  .section-heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-tag {
    font-size: 0.65rem;
  }

  .quote-text {
    font-size: clamp(1rem, 4vw, 1.4rem);
  }

  .quote-mark {
    font-size: 4rem;
    margin-bottom: -1.5rem;
  }

  .service-card {
    padding: var(--sp-md) var(--sp-sm);
  }

  .service-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin-bottom: var(--sp-xs);
  }

  .service-title {
    font-size: 1.1rem;
  }

  .about-image-wrapper img {
    height: 260px;
  }

  .pill {
    font-size: 0.72rem;
    padding: 0.4rem 0.9rem;
  }

  .gallery-grid {
    grid-auto-rows: 200px;
    gap: 0.5rem;
  }

  .cta-card {
    padding: var(--sp-lg) var(--sp-sm);
    border-radius: var(--radius-lg);
  }

  .cta-contact-item {
    padding: 0.5rem 1rem;
  }

  .cta-contact-text {
    font-size: 0.8rem;
  }

  .footer-logo {
    font-size: 1.1rem;
  }

  .footer-text {
    font-size: 0.7rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-social a svg {
    width: 16px;
    height: 16px;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ===================================================
   MOBILE OVERLAY
   =================================================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===================================================
   SCROLLBAR
   =================================================== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--clr-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--clr-surface-2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 162, 78, 0.3);
}

/* ===================================================
   SELECTION
   =================================================== */
::selection {
  background: rgba(212, 162, 78, 0.3);
  color: var(--clr-text);
}
