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

:root {
  --black:       #090909;
  --dark:        #111111;
  --dark2:       #1a1a1a;
  --dark3:       #242424;
  --green:       #00ff41;
  --green-dim:   #00cc33;
  --green-muted: rgba(0,255,65,0.12);
  --border:      rgba(255,255,255,0.08);
  --border-green:rgba(0,255,65,0.25);
  --white:       #ffffff;
  --grey:        #888888;
  --grey-light:  #bbbbbb;
  --radius:      12px;
  --radius-lg:   20px;
  --nav-h:       72px;
  --font:        'Inter', system-ui, sans-serif;
  --font-heading:'Space Grotesk', system-ui, sans-serif;
  --ease:        0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

section { scroll-margin-top: calc(var(--nav-h) + 12px); }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
ol  { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--green-dim); border-radius: 3px; }

/* ── Focus visible ─────────────────────────────────────────── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 600; }

.accent { color: var(--green); }

/* ── Section Header ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { color: var(--grey-light); font-size: 1.1rem; margin-top: 12px; max-width: 520px; margin-inline: auto; }
.section-tag {
  display: inline-block;
  background: var(--green-muted);
  border: 1px solid var(--border-green);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--green); color: var(--black); }
.btn-primary:hover { background: var(--green-dim); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,255,65,0.3); }

.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--green); border: 1px solid var(--border-green); width: 100%; justify-content: center; }
.btn-outline:hover { background: var(--green-muted); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ── Scroll Progress ───────────────────────────────────────── */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--green-dim));
  z-index: 9999;
  box-shadow: 0 0 8px rgba(0,255,65,0.6);
  transition: width 0.1s linear;
}

/* ── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 20px;
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ── Page Loader ───────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#loader svg { animation: loaderSpin 2s linear infinite; }
@keyframes loaderSpin {
  0%,100% { transform: rotate(0deg); }
  25%      { transform: rotate(90deg); }
  50%      { transform: rotate(180deg); }
  75%      { transform: rotate(270deg); }
}
.loader-bar { width: 160px; height: 3px; background: var(--dark3); border-radius: 2px; overflow: hidden; }
.loader-progress { height: 100%; background: var(--green); border-radius: 2px; animation: loadBar 1.4s ease forwards; }
@keyframes loadBar { from { width: 0; } to { width: 100%; } }

/* ── Custom Cursor ─────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  body, a, button, [role="button"], select, label, .portfolio-item, .filter-btn { cursor: none; }
}
#cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999; will-change: transform; }

.cursor-ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,255,65,0.5);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
}
.cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.cursor-cross {
  position: absolute;
  transform: translate(-50%,-50%);
  width: 14px; height: 14px;
}
.cursor-cross span { position: absolute; background: rgba(0,255,65,0.4); }
.cursor-cross span:first-child { width: 1px; height: 14px; left: 50%; top: 0; transform: translateX(-50%); }
.cursor-cross span:last-child  { width: 14px; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }

#cursor.hovering .cursor-ring { width: 52px; height: 52px; border-color: var(--green); background: rgba(0,255,65,0.06); }
#cursor.clicking .cursor-ring { width: 24px; height: 24px; background: rgba(0,255,65,0.15); }

/* ── Floating WhatsApp ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark2);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── Back to Top ───────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 44px; height: 44px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 890;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--ease);
}
#backToTop svg { width: 18px; height: 18px; }
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { border-color: var(--green); color: var(--green); background: var(--green-muted); }

/* ── Cookie Banner ─────────────────────────────────────────── */
#cookieBanner {
  position: fixed;
  bottom: 24px; left: 24px;
  max-width: 420px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 16px;
  z-index: 9000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
#cookieBanner.hidden,
#cookieBanner.pre-hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-text { display: flex; align-items: flex-start; gap: 12px; }
.cookie-text p { font-size: 0.85rem; color: var(--grey-light); line-height: 1.6; }
.cookie-text a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }
.cookie-actions button {
  font-family: var(--font);
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--ease);
}
.cookie-actions button:first-child { background: transparent; color: var(--grey); }
.cookie-actions button:first-child:hover { color: var(--white); border-color: var(--white); }
.cookie-actions .btn-accept { background: var(--green); color: var(--black); border-color: var(--green); }
.cookie-actions .btn-accept:hover { background: var(--green-dim); }

/* ── Lightbox ──────────────────────────────────────────────── */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#lightbox.open { opacity: 1; visibility: visible; }

.lb-img-wrap {
  position: relative;
  max-width: 90vw; max-height: 85vh;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
#lbImg {
  max-width: 90vw; max-height: 80vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: opacity 0.2s;
}
#lbImg.loading { opacity: 0.3; }
.lb-caption { font-size: 0.85rem; color: var(--grey-light); text-align: center; }
.lb-counter  { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-size: 0.78rem; color: var(--grey); letter-spacing: 0.08em; }

.lb-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: var(--dark2); border: 1px solid var(--border); border-radius: 50%;
  color: var(--white); display: flex; align-items: center; justify-content: center;
  transition: all var(--ease); z-index: 2;
}
.lb-close svg { width: 18px; height: 18px; }
.lb-close:hover { border-color: var(--green); color: var(--green); }

.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: var(--dark2); border: 1px solid var(--border); border-radius: 50%;
  color: var(--white); display: flex; align-items: center; justify-content: center;
  transition: all var(--ease); z-index: 2;
}
.lb-nav svg { width: 20px; height: 20px; }
.lb-nav:hover { border-color: var(--green); color: var(--green); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ── NAV ───────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
  transition: background 0.3s, border-bottom 0.3s;
}
#navbar.scrolled {
  background: rgba(9,9,9,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
}
.logo-dot { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--grey-light); transition: color var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta { background: var(--green); color: var(--black); padding: 10px 22px; border-radius: var(--radius); font-weight: 700; }
.nav-links .nav-cta:hover { background: var(--green-dim); color: var(--black); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  padding: 0; overflow: hidden;
  scroll-margin-top: 0;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(9,9,9,0.5) 0%, rgba(9,9,9,0.3) 40%, rgba(9,9,9,0.7) 80%, rgba(9,9,9,1) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,255,65,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,255,65,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; text-align: center; padding: 0 24px; max-width: 840px; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,255,65,0.1); border: 1px solid var(--border-green);
  color: var(--green); font-size: 0.8rem; font-weight: 600;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 24px; letter-spacing: 0.05em;
}
.pulse-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,255,65,0.7); } 50% { box-shadow: 0 0 0 8px rgba(0,255,65,0); } }

.hero-content h1 {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; margin-bottom: 20px;
  font-size: unset; line-height: unset;
}
.hero-dv {
  display: block;
  font-family: 'Noto Sans Thaana', 'Faruma', 'MV Dawit', system-ui, sans-serif;
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow:
    0 0 40px rgba(0,255,65,0.5),
    0 0 80px rgba(0,255,65,0.2),
    0 0 120px rgba(0,255,65,0.08);
}
.hero-dv-en {
  display: block;
  font-family: var(--font);
  font-size: clamp(0.7rem, 3vw, 0.88rem);
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  line-height: 1;
}
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--grey-light); max-width: 580px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 32px; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--grey); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: var(--grey); animation: bounce 2s ease-in-out infinite; z-index: 1; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── About ─────────────────────────────────────────────────── */
#about { background: var(--dark); }
.about-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-visual { display: flex; flex-direction: column; gap: 20px; }
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--border); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(9,9,9,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border-green); border-radius: var(--radius);
  padding: 14px 20px; display: flex; flex-direction: column; align-items: center;
}
.about-img-badge .stat-num { font-size: 2rem; }
.about-img-badge span:last-child { font-size: 0.75rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; }
.about-gear { display: flex; flex-direction: column; gap: 12px; }
.gear-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 18px; transition: border-color var(--ease);
}
.gear-item:hover { border-color: var(--border-green); }
.gear-item svg { width: 24px; height: 24px; flex-shrink: 0; }
.gear-item strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.gear-item span { font-size: 0.78rem; color: var(--grey); }
.about-text .section-tag { margin-bottom: 16px; display: inline-block; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--grey-light); line-height: 1.75; margin-bottom: 16px; font-size: 0.97rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.about-tags span { background: var(--dark3); border: 1px solid var(--border); color: var(--grey-light); font-size: 0.78rem; font-weight: 500; padding: 6px 14px; border-radius: 100px; }

/* ── Portfolio ─────────────────────────────────────────────── */
#work { background: var(--black); }
.filter-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  background: var(--dark2); border: 1px solid var(--border);
  color: var(--grey-light); font-size: 0.85rem; font-weight: 500;
  padding: 8px 20px; border-radius: 100px; transition: all var(--ease);
  font-family: var(--font);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.filter-btn:hover, .filter-btn.active { background: var(--green-muted); border-color: var(--border-green); color: var(--green); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.portfolio-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; border: 1px solid var(--border);
  transition: transform var(--ease), border-color var(--ease);
}
.portfolio-item.large { grid-column: span 2; }
.portfolio-item:hover, .portfolio-item:focus-within { transform: scale(1.02); border-color: var(--border-green); }
.portfolio-item:focus { outline: 2px solid var(--green); outline-offset: 2px; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.95) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 0; transition: opacity var(--ease);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag {
  display: inline-block; background: var(--green-muted); border: 1px solid var(--border-green);
  color: var(--green); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; margin-bottom: 8px; width: fit-content;
}
.portfolio-overlay h3 { font-size: 1.1rem; margin-bottom: 4px; }
.portfolio-overlay p  { font-size: 0.85rem; color: var(--grey-light); }

/* ── Services ──────────────────────────────────────────────── */
#services { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; position: relative;
  transition: border-color var(--ease), transform var(--ease);
}
.service-card:hover { border-color: var(--border-green); transform: translateY(-4px); }
.service-card.featured { border-color: var(--border-green); background: linear-gradient(145deg, var(--dark2), rgba(0,255,65,0.04)); }
.featured-badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--green); color: var(--black);
  font-size: 0.7rem; font-weight: 700;
  padding: 5px 12px; border-radius: 0 0 var(--radius) var(--radius);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.service-icon { width: 56px; height: 56px; background: var(--green-muted); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; padding: 10px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 12px; }
.service-card p  { color: var(--grey-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-features li { font-size: 0.85rem; color: var(--grey-light); display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ── Showreel ──────────────────────────────────────────────── */
#showreel { background: var(--black); }
.reel-wrap { max-width: 900px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 0 80px rgba(0,255,65,0.07); }
.reel-placeholder { position: relative; aspect-ratio: 16/9; cursor: pointer; }
.reel-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.reel-overlay {
  position: absolute; inset: 0;
  background: rgba(9,9,9,0.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  transition: background var(--ease);
}
.reel-placeholder:hover .reel-overlay { background: rgba(9,9,9,0.4); }
.reel-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; }
.play-btn {
  width: 72px; height: 72px;
  background: var(--green); border: none; border-radius: 50%;
  color: var(--black); display: flex; align-items: center; justify-content: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 40px rgba(0,255,65,0.5); }
.reel-video { aspect-ratio: 16/9; }
.reel-video iframe { width: 100%; height: 100%; border: 0; }

/* ── Process ───────────────────────────────────────────────── */
#process { background: var(--dark); }
.process-steps { display: flex; align-items: flex-start; gap: 0; list-style: none; }
.process-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 0 20px; }
.step-num { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: transparent; -webkit-text-stroke: 2px var(--green); line-height: 1; }
.step-content h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step-content p  { font-size: 0.88rem; color: var(--grey-light); line-height: 1.7; }
.process-connector { flex-shrink: 0; width: 60px; height: 2px; background: linear-gradient(90deg, var(--green), transparent); margin-top: 28px; opacity: 0.4; }

/* ── Pricing ───────────────────────────────────────────────── */
#pricing { background: var(--black); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-card {
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; position: relative;
  display: flex; flex-direction: column;
  transition: border-color var(--ease), transform var(--ease);
}
.pricing-card:hover { border-color: var(--border-green); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--green);
  background: linear-gradient(145deg, var(--dark2), rgba(0,255,65,0.06));
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--black);
  font-size: 0.7rem; font-weight: 700;
  padding: 5px 16px; border-radius: 0 0 var(--radius) var(--radius);
  white-space: nowrap; letter-spacing: 0.05em; text-transform: uppercase;
}
.pricing-header { margin-bottom: 28px; }
.pricing-header h3 { font-size: 1.3rem; margin-bottom: 6px; }
.pricing-desc { color: var(--grey); font-size: 0.85rem; margin-bottom: 20px; }
.pricing-amount { display: flex; align-items: baseline; gap: 4px; margin-top: 16px; }
.currency { font-size: 0.85rem; color: var(--green); font-weight: 700; letter-spacing: 0.05em; align-self: flex-start; margin-top: 12px; }
.price { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; line-height: 1; }
.period { font-size: 0.9rem; color: var(--grey); }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--grey-light); }
.pricing-features li svg { width: 16px; height: 16px; flex-shrink: 0; }
.feature-off { opacity: 0.4; }
.pricing-note { text-align: center; color: var(--grey); font-size: 0.9rem; margin-top: 40px; }
.pricing-note a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* ── FAQ ───────────────────────────────────────────────────── */
#faq { background: var(--dark); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color var(--ease);
}
.faq-item.open { border-color: var(--border-green); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: none;
  color: var(--white); font-family: var(--font); font-size: 0.97rem; font-weight: 600;
  text-align: left; transition: color var(--ease);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.faq-item.open .faq-question, .faq-question:hover { color: var(--green); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--grey); transition: transform 0.3s ease, color 0.2s; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--green); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer p { padding: 0 24px 20px; color: var(--grey-light); font-size: 0.92rem; line-height: 1.75; }

/* ── Testimonials ──────────────────────────────────────────── */
#testimonials { background: var(--black); overflow: hidden; }
.testimonials-track-wrap { overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: border-color var(--ease);
}
.testimonial-card:hover { border-color: var(--border-green); }
.stars { color: var(--green); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
blockquote { font-size: 0.95rem; color: var(--grey-light); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; object-fit: cover; border: 2px solid var(--border-green); }
.testimonial-initial {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-muted); border: 2px solid var(--border-green);
  color: var(--green); font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span  { font-size: 0.78rem; color: var(--grey); }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.t-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--dark2); border: 1px solid var(--border); color: var(--white);
  display: flex; align-items: center; justify-content: center; transition: all var(--ease);
}
.t-nav-btn svg { width: 20px; height: 20px; }
.t-nav-btn:hover { border-color: var(--green); color: var(--green); }
.t-dots { display: flex; gap: 8px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--dark3); border: 1px solid var(--border); transition: all var(--ease); }
.t-dot.active { background: var(--green); border-color: var(--green); width: 24px; border-radius: 4px; }

/* ── Clients Ticker ────────────────────────────────────────── */
#clients {
  background: var(--dark);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients-label { text-align: center; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin-bottom: 28px; }
.clients-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.clients-inner { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.clients-inner:hover { animation-play-state: paused; }
.clients-inner span {
  display: inline-flex; align-items: center;
  padding: 0 36px; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600;
  color: var(--grey); white-space: nowrap; transition: color var(--ease); position: relative;
}
.clients-inner span::after { content: '·'; position: absolute; right: 0; color: var(--border-green); }
.clients-inner span:hover { color: var(--green); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Booking ───────────────────────────────────────────────── */
#booking { background: var(--black); }
.booking-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.booking-info h2 { margin-bottom: 16px; }
.booking-info > p { color: var(--grey-light); line-height: 1.7; margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 12px; color: var(--grey-light); font-size: 0.9rem; transition: color var(--ease); }
.contact-item:hover { color: var(--green); }
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 44px; height: 44px;
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-light); transition: all var(--ease);
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover { border-color: var(--green); color: var(--green); background: var(--green-muted); }

/* ── Form ──────────────────────────────────────────────────── */
.booking-form { background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--grey-light); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--ease);
  width: 100%;
  color-scheme: dark;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--dark3); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #ff4141; }
.form-group .field-error { font-size: 0.75rem; color: #ff6b6b; display: none; }
.form-group.has-error .field-error { display: block; }

.form-success {
  display: none; align-items: center; gap: 12px;
  background: var(--green-muted); border: 1px solid var(--border-green);
  border-radius: var(--radius); padding: 16px; margin-top: 16px; color: var(--green);
}
.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }
.form-success.show { display: flex; }

/* ── Footer ────────────────────────────────────────────────── */
footer { background: var(--dark); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 48px; gap: 16px; }
.footer-tagline { color: var(--grey); font-size: 0.9rem; }
.footer-nav {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 0.88rem; color: var(--grey); transition: color var(--ease); }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.8rem; color: var(--grey); }


/* ── Touch devices: portfolio overlay always visible ───────── */
@media (hover: none) {
  .portfolio-overlay { opacity: 1; }
  .portfolio-item:hover { transform: none; }
  .portfolio-item:hover img { transform: none; }
  .portfolio-item:active { transform: scale(0.98); border-color: var(--border-green); }
}

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  #navbar, #loader, .wa-float, #cursor, #cookieBanner, #backToTop, #scrollProgress { display: none !important; }
  body { background: white; color: black; }
  section { padding: 24px 0; }
}

/* ── Responsive: 1024px ────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.large { grid-column: span 2; }
  .booking-wrap { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .about-wrap { grid-template-columns: 1fr 1.1fr; gap: 48px; }
}

/* ── Responsive: 768px ─────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 64px 0; }

  #navbar { padding: 0 20px; }
  .nav-links {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(9,9,9,0.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); padding: 8px 20px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 14px 0;
    border-bottom: 1px solid var(--border); width: 100%;
    font-size: 1rem;
    touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .nav-cta { background: none; padding: 14px 0; border-radius: 0; }
  .nav-toggle {
    display: flex;
    touch-action: manipulation; -webkit-tap-highlight-color: transparent;
    min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
  }

  #hero { min-height: 600px; }

  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.72rem; }

  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; gap: 12px; }
  .portfolio-item.large { grid-column: span 1; }

  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { aspect-ratio: 3/2; }

  .process-steps { flex-direction: column; gap: 32px; }
  .process-connector { width: 2px; height: 32px; background: linear-gradient(180deg, var(--green), transparent); margin: 0 auto; }

  .testimonial-card { flex: 0 0 100%; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 24px; }

  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .reel-wrap { border-radius: var(--radius); }
  #cookieBanner { left: 12px; right: 12px; max-width: none; bottom: 12px; }
  .lb-nav { display: none; }

  /* bigger tap targets for lightbox */
  .lb-close { width: 52px; height: 52px; top: 12px; right: 12px; }
  .t-nav-btn { width: 48px; height: 48px; }

  .wa-float { bottom: 20px; right: 20px; }
  #backToTop { bottom: 84px; right: 20px; }
}

/* ── Responsive: 480px ─────────────────────────────────────── */
@media (max-width: 480px) {
  section { padding: 56px 0; }
  .container { padding: 0 20px; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-badge { font-size: 0.72rem; padding: 6px 12px; }

  .hero-stats { gap: 12px; }
  .stat-num { font-size: 1.3rem; }
  .stat-divider { height: 32px; }

  .portfolio-grid { grid-auto-rows: 200px; }

  .services-grid { grid-template-columns: 1fr; }

  .pricing-grid { max-width: none; }
  .pricing-card { padding: 28px 20px; }
  .price { font-size: 2.6rem; }

  .booking-form { padding: 20px 16px; }

  .footer-nav { grid-template-columns: 1fr; }

  .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
  #backToTop { bottom: 80px; right: 16px; width: 40px; height: 40px; }

  .section-header { margin-bottom: 40px; }
  .section-header p { font-size: 1rem; }

  .faq-question { padding: 16px 20px; font-size: 0.92rem; }
  .faq-answer p { padding: 0 20px 16px; }

  .service-card { padding: 28px 20px; }
}


/* ── Responsive: 380px ─────────────────────────────────────── */
@media (max-width: 380px) {
  .container { padding: 0 16px; }

  .hero-dv { font-size: clamp(4rem, 18vw, 5rem); }

  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
  .stat-divider { display: none; }

  .about-tags span { font-size: 0.72rem; }

  .filter-tabs { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 0.8rem; }
}

/* ── Shop Teaser (main page) ───────────────────────────────── */
#shop {
  background: var(--dark);
  position: relative;
}

.shop-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.shop-teaser-text { max-width: 500px; }
.shop-teaser-text .section-tag { margin-bottom: 16px; }
.shop-teaser-text h2 { margin-bottom: 18px; }
.shop-teaser-text p  { color: var(--grey-light); font-size: 1.05rem; margin-bottom: 36px; }

.shop-teaser-cta {
  will-change: transform;
}

.shop-teaser-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 14px;
  height: 420px;
}
.shop-preview-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.shop-preview-photo {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.35s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  flex: 1;
}
.shop-preview-tall { grid-row: span 1; height: 100%; }
.shop-preview-photo:hover {
  border-color: var(--border-green);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.shop-preview-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.shop-preview-photo:hover img { transform: scale(1.05); }

.shop-preview-label {
  position: absolute;
  bottom: 10px; left: 10px;
  background: var(--green);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}
.shop-preview-label-alt {
  background: rgba(9,9,9,0.8);
  color: var(--green);
  border: 1px solid var(--border-green);
}

@media (max-width: 900px) {
  .shop-teaser { grid-template-columns: 1fr; gap: 48px; }
  .shop-teaser-text { max-width: 100%; }
  .shop-teaser-photos { height: 320px; }
}
@media (max-width: 540px) {
  .shop-teaser-photos { height: 240px; gap: 10px; }
  .shop-preview-label { font-size: 0.52rem; padding: 2px 7px; }
}

/* ── Enhanced fade-up animation ─────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(44px);
  filter: blur(3px);
  transition:
    opacity 0.8s cubic-bezier(0.16,1,0.3,1),
    transform 0.8s cubic-bezier(0.16,1,0.3,1),
    filter  0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Section heading animated underline reveal */
.section-header h2 { position: relative; display: inline-block; }
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transition: width 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s;
  border-radius: 2px;
}
.section-header.fade-up.visible h2::after { width: 50%; }

/* Magnetic button style hook */
.btn-primary { will-change: transform; }

/* ── Theme toggle button ───────────────────────────────────── */
.theme-toggle {
  width: 36px; height: 36px;
  background: var(--dark2); border: 1px solid var(--border); border-radius: 50%;
  color: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--green); color: var(--green); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun  { display: block; }
[data-theme="light"] .theme-toggle .icon-sun  { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* ── Light theme ───────────────────────────────────────────── */
[data-theme="light"] {
  --black:       #f8f8f6;
  --dark:        #efefed;
  --dark2:       #e6e6e4;
  --dark3:       #d8d8d6;
  --green:       #008a24;
  --green-dim:   #006e1c;
  --green-muted: rgba(0,138,36,0.1);
  --border:      rgba(0,0,0,0.1);
  --border-green:rgba(0,138,36,0.25);
  --white:       #0d0d0d;
  --grey:        #666666;
  --grey-light:  #333333;
}

[data-theme="light"] body { color: var(--white); }

[data-theme="light"] .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(248,248,246,0.7) 80%,
    rgba(248,248,246,1) 100%
  );
}
[data-theme="light"] .hero-grid {
  background-image:
    linear-gradient(rgba(0,138,36,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,138,36,0.05) 1px, transparent 1px);
}
[data-theme="light"] .hero-sub { color: #444; }
[data-theme="light"] .hero-badge { background: rgba(0,138,36,0.12); }
[data-theme="light"] .hero-dv {
  color: var(--green);
  text-shadow: 0 0 40px rgba(0,138,36,0.2), 0 0 80px rgba(0,138,36,0.08);
}
[data-theme="light"] .hero-dv-en { color: rgba(0,0,0,0.35); }
[data-theme="light"] .stat-num { color: var(--green); }
[data-theme="light"] .stat-divider { background: rgba(0,0,0,0.15); }

[data-theme="light"] #navbar.scrolled {
  background: rgba(248,248,246,0.94);
  border-bottom-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .nav-links a { color: #444; }
[data-theme="light"] .nav-links a:hover { color: var(--white); }
[data-theme="light"] .nav-toggle span { background: var(--white); }

[data-theme="light"] #loader { background: var(--black); }
[data-theme="light"] #scrollProgress { box-shadow: 0 0 8px rgba(0,138,36,0.5); }

[data-theme="light"] #lightbox { background: rgba(248,248,246,0.97); }
[data-theme="light"] .lb-close,
[data-theme="light"] .lb-nav { background: var(--dark2); color: var(--white); }

[data-theme="light"] .section-tag {
  background: rgba(0,138,36,0.1);
  border-color: rgba(0,138,36,0.25);
  color: var(--green);
}
[data-theme="light"] .accent { color: var(--green); }

[data-theme="light"] .btn-ghost { color: var(--white); border-color: rgba(0,0,0,0.2); }
[data-theme="light"] .btn-ghost:hover { border-color: var(--green); color: var(--green); }
[data-theme="light"] .btn-outline { color: var(--green); border-color: var(--border-green); }

[data-theme="light"] .portfolio-tag { background: rgba(0,138,36,0.1); border-color: rgba(0,138,36,0.25); color: var(--green); }
[data-theme="light"] .filter-btn.active,
[data-theme="light"] .filter-btn:hover { background: rgba(0,138,36,0.1); border-color: rgba(0,138,36,0.25); color: var(--green); }

[data-theme="light"] .faq-item.open { border-color: rgba(0,138,36,0.3); }
[data-theme="light"] .faq-item.open .faq-question,
[data-theme="light"] .faq-question:hover { color: var(--green); }
[data-theme="light"] .faq-icon { color: #999; }
[data-theme="light"] .faq-item.open .faq-icon { color: var(--green); }

[data-theme="light"] .stars { color: var(--green); }
[data-theme="light"] blockquote { color: #444; }
[data-theme="light"] .t-dot { background: var(--dark3); }
[data-theme="light"] .t-dot.active { background: var(--green); }
[data-theme="light"] .testimonial-initial { background: rgba(0,138,36,0.1); border-color: rgba(0,138,36,0.3); color: var(--green); }

[data-theme="light"] .clients-inner span { color: #888; }
[data-theme="light"] .clients-inner span:hover { color: var(--green); }

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: #fff;
  border-color: rgba(0,0,0,0.15);
  color: var(--white);
}
[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder { color: #bbb; }
[data-theme="light"] .form-group label { color: #444; }

[data-theme="light"] .play-btn { background: var(--green); }
[data-theme="light"] .service-icon { background: rgba(0,138,36,0.1); }
[data-theme="light"] .featured-badge { background: var(--green); }
[data-theme="light"] .pricing-badge { background: var(--green); }
[data-theme="light"] .pricing-card.featured { border-color: var(--green); }
[data-theme="light"] .currency { color: var(--green); }
[data-theme="light"] .pricing-note a { color: var(--green); }

[data-theme="light"] .about-img-badge { background: rgba(248,248,246,0.9); border-color: rgba(0,138,36,0.3); }
[data-theme="light"] .gear-item:hover { border-color: rgba(0,138,36,0.3); }
[data-theme="light"] .gear-item svg { stroke: var(--green); }

[data-theme="light"] .contact-item:hover { color: var(--green); }
[data-theme="light"] .social-link:hover { border-color: var(--green); color: var(--green); background: rgba(0,138,36,0.08); }

[data-theme="light"] .step-num { -webkit-text-stroke-color: var(--green); }
[data-theme="light"] .service-features li::before { background: var(--green); }
[data-theme="light"] .pulse-dot { background: var(--green); }

[data-theme="light"] ::-webkit-scrollbar-track { background: var(--black); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: var(--green-dim); }

[data-theme="light"] #backToTop:hover { border-color: var(--green); color: var(--green); }
[data-theme="light"] #cookieBanner { background: #fff; }
[data-theme="light"] .cookie-actions .btn-accept { background: var(--green); border-color: var(--green); }
[data-theme="light"] .cookie-text a { color: var(--green); }
[data-theme="light"] .form-success { background: rgba(0,138,36,0.08); border-color: rgba(0,138,36,0.3); color: var(--green); }

/* hero text sits over a dark image overlay — keep it light */
[data-theme="light"] .hero-sub { color: rgba(255,255,255,0.85); }
[data-theme="light"] .hero-badge { color: #00ff41; }
[data-theme="light"] .stat-label { color: rgba(255,255,255,0.6); }
[data-theme="light"] .scroll-hint { color: rgba(255,255,255,0.5); }

/* portfolio overlay is always a dark gradient — text must stay white */
[data-theme="light"] .portfolio-overlay h3 { color: #ffffff; }
[data-theme="light"] .portfolio-overlay p  { color: rgba(255,255,255,0.75); }

/* mobile nav — switch to light background so dark text is readable */
[data-theme="light"] .nav-links {
  background: rgba(248,248,246,0.98);
  border-bottom-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .nav-links a { color: #222; border-bottom-color: rgba(0,0,0,0.08); }
[data-theme="light"] .nav-links a:hover { color: var(--green); }
[data-theme="light"] .nav-links .nav-cta { color: var(--black); }

/* about badge — dark bg in base CSS, make it light */
[data-theme="light"] .about-img-badge span:last-child { color: #555; }

/* process connector */
[data-theme="light"] .process-connector { background: linear-gradient(90deg, var(--green), transparent); }

/* footer text */
[data-theme="light"] footer { border-top-color: rgba(0,0,0,0.1); }
[data-theme="light"] .footer-col h4 { color: #333; }
[data-theme="light"] .footer-col li,
[data-theme="light"] .footer-col a { color: #666; }
[data-theme="light"] .footer-col a:hover { color: var(--green); }
[data-theme="light"] .footer-bottom p { color: #888; }
[data-theme="light"] .footer-tagline { color: #666; }

/* clients border */
[data-theme="light"] #clients { border-color: rgba(0,0,0,0.08); }

/* showreel — overlay is always dark, text stays white */
[data-theme="light"] .reel-overlay p { color: rgba(255,255,255,0.7); }

/* cookie decline button */
[data-theme="light"] .cookie-actions button:first-child { color: #666; border-color: rgba(0,0,0,0.15); }
[data-theme="light"] .cookie-text p { color: #444; }

/* back-to-top */
[data-theme="light"] #backToTop { background: var(--dark2); border-color: rgba(0,0,0,0.15); color: #333; }

/* lightbox caption */
[data-theme="light"] .lb-caption { color: #444; }
[data-theme="light"] .lb-counter { color: #888; }

/* shop teaser */
[data-theme="light"] #shop { background: var(--dark); }
[data-theme="light"] .shop-preview-photo { border-color: rgba(0,0,0,0.1); }
