:root {
  --bg-base:        #0a0a0a;
  --bg-surface:     #111111;
  --bg-elevated:    #181818;

  --gold:           #c9913a;
  --gold-light:     #e8b86d;
  --gold-dim:       #7a5420;
  --gold-glow:      rgba(201, 145, 58, 0.20);
  --gold-glow-soft: rgba(201, 145, 58, 0.08);

  --text-primary:   #f0ece4;
  --text-secondary: #a09888;
  --text-muted:     #5a5248;

  --border:         rgba(201, 145, 58, 0.14);
  --border-subtle:  rgba(255, 255, 255, 0.06);

  --font-display:   'Cormorant Garamond', serif;
  --font-body:      'Jost', sans-serif;

  --section-pad:    clamp(5rem, 10vw, 9rem);
  --container:      1200px;
  --radius:         12px;
  --radius-lg:      20px;

  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) { body { cursor: auto; } }

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: none; font-family: var(--font-body); }
@media (hover: none) { button { cursor: pointer; } }

::selection {
  background: var(--gold-dim);
  color: var(--gold-light);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-title.centered { text-align: center; }

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}

#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
  text-shadow: 0 0 40px var(--gold-glow);
}

@keyframes loaderPulse {
  from { opacity: 0.4; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1); }
}

.loader-bar {
  width: 160px;
  height: 1px;
  background: var(--border);
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  animation: loadFill 1.8s var(--ease) forwards;
}

@keyframes loadFill { to { width: 100%; } }

#cursor, #cursor-trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, opacity 0.3s;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  #cursor { display: block; }
  #cursor-trail { display: block; }
}

#cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

#cursor-trail {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  opacity: 0.35;
  transition: transform 0.18s var(--ease), opacity 0.3s, width 0.2s, height 0.2s;
}

body.cursor-hover #cursor-trail {
  width: 50px;
  height: 50px;
  opacity: 0.18;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  z-index: 9997;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--gold);
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.2rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, padding 0.4s;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-shadow: 0 0 20px var(--gold-glow);
  transition: text-shadow 0.3s;
}
.nav-logo:hover { text-shadow: 0 0 35px var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active { color: var(--gold-light); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link.nav-cta {
  border: 1px solid var(--gold-dim);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  color: var(--gold-light);
  transition: background 0.3s, box-shadow 0.3s, color 0.3s;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--gold-glow);
  box-shadow: 0 0 20px var(--gold-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-light);
  transition: transform 0.35s var(--ease), opacity 0.35s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orbFloat 0.8s var(--ease) forwards;
}

.orb-1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(circle, rgba(201,145,58,0.12) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation-delay: 0.3s;
  animation-duration: 1s;
}

.orb-2 {
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  background: radial-gradient(circle, rgba(201,145,58,0.08) 0%, transparent 70%);
  bottom: 0;
  right: -5%;
  animation-delay: 0.5s;
  animation-duration: 1.1s;
}

.orb-3 {
  width: clamp(150px, 25vw, 350px);
  height: clamp(150px, 25vw, 350px);
  background: radial-gradient(circle, rgba(232,184,109,0.06) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
  animation-delay: 0.7s;
}

@keyframes orbFloat {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  max-width: 800px;
}

.hero-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 0.5rem;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  overflow: hidden;
}

.avatar-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  animation: ringPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.06); opacity: 1; }
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  text-shadow: 0 0 60px rgba(201,145,58,0.3);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  animation: scrollHintFade 1s 2.5s both;
}

@keyframes scrollHintFade {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollLineDrop 1.6s ease-in-out infinite;
}

@keyframes scrollLineDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #080604;
  font-weight: 500;
  box-shadow: 0 4px 24px rgba(201,145,58,0.25);
}
.btn-gold::before { background: rgba(255,255,255,0.1); }
.btn-gold:hover {
  box-shadow: 0 8px 40px rgba(201,145,58,0.45);
}
.btn-gold:hover::before { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--gold-light);
  border-color: var(--gold-dim);
  box-shadow: 0 0 24px var(--gold-glow-soft);
}

.btn.full-width { width: 100%; }

#about {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 50%, var(--bg-base) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-top: 3rem;
}

.about-image {
  position: relative;
}

.about-photo-placeholder {
  aspect-ratio: 4/5;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}

.about-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80px;
  background: var(--gold-glow);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}

.about-text { padding: 1rem 0; }

.about-role {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about-bio {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.8rem 0 2rem;
}

.skill-tag {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-secondary);
  background: var(--bg-elevated);
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.skill-tag:hover {
  border-color: var(--gold-dim);
  color: var(--gold-light);
  box-shadow: 0 0 12px var(--gold-glow-soft);
}

.about-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.social-link:hover { color: var(--gold-light); }

#portfolio { background: var(--bg-base); }

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--gold-dim);
  color: var(--gold-light);
  background: var(--gold-glow-soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  cursor: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

@media (hover: none) { .portfolio-card { cursor: pointer; } }

.portfolio-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(201,145,58,0.15);
  border-color: var(--gold-dim);
}

.portfolio-card.hidden {
  display: none;
}

.card-thumb {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.thumb-placeholder {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.card-info {
  padding: 1.2rem 1.4rem 1.4rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.card-tags {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.card-hover-overlay {
  pointer-events: none;
}

.card-hover-overlay span {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transform: translateY(8px);
  transition: transform 0.35s var(--ease);
}

.portfolio-card:hover .card-hover-overlay { opacity: 1; }
.portfolio-card:hover .card-hover-overlay span { transform: translateY(0); }

#services {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(201,145,58,0.12);
  border-color: var(--gold-dim);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
  border-color: var(--gold-dim);
  background: linear-gradient(145deg, var(--bg-elevated), rgba(201,145,58,0.04));
}

.service-card.featured::before { opacity: 1; }

.service-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  color: var(--gold-light);
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-light);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1.2rem;
  position: relative;
}

.service-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

#stats {
  padding: 5rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 40px rgba(201,145,58,0.3);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

#testimonials {
  background: var(--bg-base);
  overflow: hidden;
}

.testimonial-track-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.testimonial-track-outer {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius);
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease-out);
}

.testimonial-card {
  flex: 0 0 calc(100% - 0px);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.3rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 8rem;
  font-style: italic;
  color: var(--gold-dim);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-primary);
}

.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--gold-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.carousel-btn:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 0 20px var(--gold-glow-soft);
  background: var(--gold-glow-soft);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

#contact {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-top: 1rem;
}

.contact-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-primary);
  width: 100%;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a5420' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--bg-elevated); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px var(--gold-glow-soft);
}

.form-status {
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2em;
  color: var(--gold);
}

.contact-info {
  padding-top: 0.5rem;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.contact-link-item:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 0 24px var(--gold-glow-soft);
  transform: translateX(4px);
}

.contact-link-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-link-icon svg { width: 16px; height: 16px; }

.contact-link-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.contact-link-value {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(80,200,120,0.25);
  border-radius: 2rem;
  font-size: 0.78rem;
  color: #80d4a0;
  background: rgba(80,200,120,0.06);
}

.availability-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #50c87a;
  box-shadow: 0 0 8px #50c87a;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

#footer {
  padding: 3.5rem 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  transition: color 0.3s;
}
.footer-logo:hover { color: var(--gold-light); }

.footer-socials {
  display: flex;
  gap: 1.2rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-social-link svg { width: 18px; height: 18px; }
.footer-social-link:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  visibility: hidden;
}

.modal.open {
  pointer-events: all;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.modal.open .modal-backdrop { opacity: 1; }

.modal-panel {
  position: relative;
  z-index: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90svh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.97);
  opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.45s var(--ease);
}

.modal.open .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-base);
  color: var(--text-secondary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: color 0.3s, border-color 0.3s;
}
.modal-close:hover { color: var(--gold-light); border-color: var(--gold-dim); }

.modal-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.modal-body { padding: clamp(1.5rem, 4vw, 2.5rem); }

.modal-tags {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.modal-desc {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}

.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

.mouse-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,145,58,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s;
}

.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: block; } }

@media (max-width: 900px) {
  .about-grid        { grid-template-columns: 1fr; }
  .about-image       { max-width: 360px; margin: 0 auto; }
  .contact-grid      { grid-template-columns: 1fr; }
  .testimonial-track { gap: 1rem; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100svh;
    width: min(280px, 80vw);
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid var(--border);
  }

  .nav-links.open { right: 0; }

  .nav-link, .nav-link.nav-cta {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    border: none;
    padding: 0;
    color: var(--text-primary);
  }

  .nav-link.nav-cta { color: var(--gold-light); }

  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .portfolio-grid   { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .hero-ctas        { flex-direction: column; align-items: center; }
  .btn              { width: 100%; max-width: 280px; }
  .testimonial-track-wrap { flex-direction: column; }
  .carousel-btn     { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.video-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
}

.video-thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}