/* ==========================================================================
   Lenscape — Shared Styles
   Dark editorial photographer aesthetic. Global, reused across all pages.
   ========================================================================== */

:root {
  --accent: #D4A574;
  --accent-dark: #B8895A;
  --ink: #0E0E10;
  --ink-2: #1A1A1D;
  --ink-3: #26262A;
  --cream: #E8E6E1;
  --body: #9A9690;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Global Tailwind CDN workaround for opacity utilities on arbitrary colors */
.text-cream\/70 { color: rgba(232, 230, 225, 0.7) !important; }
.text-cream\/60 { color: rgba(232, 230, 225, 0.6) !important; }
.text-cream\/50 { color: rgba(232, 230, 225, 0.5) !important; }
.bg-ink\/60 { background-color: rgba(14, 14, 16, 0.6) !important; }
.bg-ink\/80 { background-color: rgba(14, 14, 16, 0.8) !important; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05) !important; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1) !important; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1) !important; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2) !important; }
.border-accent\/30 { border-color: rgba(212, 165, 116, 0.3) !important; }
.bg-accent\/10 { background-color: rgba(212, 165, 116, 0.1) !important; }
.bg-accent\/20 { background-color: rgba(212, 165, 116, 0.2) !important; }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 10001;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__line {
  width: 240px; height: 2px; background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden; border-radius: 2px;
}
.preloader__line::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: preloaderSlide 1.4s ease-in-out infinite;
}
@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ==========================================================================
   BACKGROUND PATTERNS (SVG data-URIs, tinted in accent/cream)
   ========================================================================== */
.bg-pattern-cross {
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 6h6v11h11v6H25v11h-6V23H8v-6h11V6z' fill='none' stroke='%23D4A574' stroke-opacity='0.07' stroke-width='0.7'/%3E%3C/svg%3E");
}
.bg-pattern-dots {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='0.9' fill='%23D4A574' fill-opacity='0.10'/%3E%3C/svg%3E");
}
.bg-pattern-diag {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0H0v40' fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='0.7'/%3E%3C/svg%3E");
}
.bg-pattern-rings {
  background-image: url("data:image/svg+xml,%3Csvg width='110' height='110' viewBox='0 0 110 110' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='55' cy='55' r='45' fill='none' stroke='%23D4A574' stroke-opacity='0.05' stroke-width='0.6'/%3E%3Ccircle cx='55' cy='55' r='28' fill='none' stroke='%23D4A574' stroke-opacity='0.04' stroke-width='0.5'/%3E%3C/svg%3E");
}
.bg-pattern-aperture {
  background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4A574' stroke-opacity='0.06' stroke-width='0.7'%3E%3Ccircle cx='45' cy='45' r='20'/%3E%3Cpath d='M45 25 L58 38 M45 25 L32 38 M65 45 L52 52 M65 45 L52 38 M45 65 L32 52 M45 65 L58 52 M25 45 L38 52 M25 45 L38 38'/%3E%3C/g%3E%3C/svg%3E");
}
.bg-pattern-grain {
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.83 0 0 0 0 0.65 0 0 0 0 0.46 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar-sticky {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar-sticky.is-scrolled {
  background-color: rgba(14, 14, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.nav-link {
  position: relative;
  color: rgba(232, 230, 225, 0.75);
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--cream); }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-panel {
  position: fixed; top: 0; right: 0; z-index: 10000;
  width: 320px; max-width: 85vw; height: 100%;
  background: var(--ink-2);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateX(100%); transition: transform 0.35s ease;
  overflow-y: auto;
}
.mobile-panel.is-open { transform: translateX(0); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: var(--ink);
  padding: 0.875rem 1.75rem; border-radius: 9999px;
  font-family: 'Jost', sans-serif; font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, transform 0.2s ease;
  cursor: pointer; border: 2px solid var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--cream);
  padding: 0.875rem 1.75rem; border-radius: 9999px;
  font-family: 'Jost', sans-serif; font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer; border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ==========================================================================
   SECTION TITLE
   ========================================================================== */
.section-eyebrow {
  font-family: 'Jost', sans-serif; font-weight: 500;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 0.75rem;
}
.section-heading {
  font-family: 'Jost', sans-serif; font-weight: 600;
  color: var(--cream); font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2; letter-spacing: -0.01em;
}
.display-heading {
  font-family: 'Montserrat Alternates', sans-serif; font-weight: 800;
  color: var(--cream); line-height: 1.05; letter-spacing: -0.02em;
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.card-dark {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}
.card-dark:hover { border-color: rgba(212, 165, 116, 0.35); transform: translateY(-4px); }

.card-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card-lift:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }

/* ==========================================================================
   GRADIENT LINE / DIVIDERS
   ========================================================================== */
.gradient-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.gradient-line-left {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* ==========================================================================
   HERO — Default (gallery slider + right category list)
   ========================================================================== */
.hero {
  position: relative; height: 100vh; min-height: 640px; overflow: hidden;
  background: var(--ink);
}
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,14,16,0.75) 0%, rgba(14,14,16,0.45) 45%, rgba(14,14,16,0.2) 70%, rgba(14,14,16,0.55) 100%),
    linear-gradient(180deg, rgba(14,14,16,0.35) 0%, rgba(14,14,16,0.2) 40%, rgba(14,14,16,0.85) 100%);
}

/* HERO — Static variant */
.hero-static__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-static__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,14,16,0.75) 0%, rgba(14,14,16,0.45) 45%, rgba(14,14,16,0.2) 70%, rgba(14,14,16,0.55) 100%),
    linear-gradient(180deg, rgba(14,14,16,0.35) 0%, rgba(14,14,16,0.2) 40%, rgba(14,14,16,0.85) 100%);
}

/* Hero text-shadow utilities for readability on photographic bg */
.hero-text-shadow { text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4); }
.hero-text-shadow-sm { text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5); }

/* HERO — Glitch variant */
.glitch {
  position: relative;
  color: var(--cream);
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  overflow: hidden;
}
.glitch::before {
  left: 2px; text-shadow: -2px 0 #ff5e94;
  animation: glitch-a 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}
.glitch::after {
  left: -2px; text-shadow: -2px 0 var(--accent);
  animation: glitch-b 2.5s infinite linear alternate-reverse;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}
@keyframes glitch-a {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(-1px, -2px); }
  60% { transform: translate(2px, 1px); }
  80% { transform: translate(1px, 2px); }
}
@keyframes glitch-b {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(2px, -1px); }
  40% { transform: translate(1px, 2px); }
  60% { transform: translate(-2px, -1px); }
  80% { transform: translate(-1px, -2px); }
}

/* HERO — Particles variant */
#particlesCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* HERO — Glitch image variant (RGB-split on photo bg) */
.glitch-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  mix-blend-mode: normal;
}
.glitch-img--r { filter: hue-rotate(-20deg) saturate(1.3); animation: glitchShiftR 4s infinite steps(1); opacity: 0.9; }
.glitch-img--g { filter: hue-rotate(90deg) saturate(1.2); animation: glitchShiftG 4s infinite steps(1); mix-blend-mode: screen; opacity: 0.35; }
.glitch-img--b { filter: hue-rotate(-90deg) saturate(1.4); animation: glitchShiftB 4s infinite steps(1); mix-blend-mode: screen; opacity: 0.35; }
@keyframes glitchShiftR {
  0%, 82%, 88%, 100% { transform: translate(0); }
  83% { transform: translate(-4px, 2px); }
  85% { transform: translate(3px, -2px); }
  87% { transform: translate(-2px, 3px); }
}
@keyframes glitchShiftG {
  0%, 80%, 86%, 100% { transform: translate(0); }
  81% { transform: translate(3px, -1px); }
  84% { transform: translate(-2px, 2px); }
}
@keyframes glitchShiftB {
  0%, 80%, 86%, 100% { transform: translate(0); }
  82% { transform: translate(-3px, 1px); }
  85% { transform: translate(2px, -2px); }
}

/* Scanline overlay */
.scanlines {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 0, 0, 0.12) 3px,
    rgba(0, 0, 0, 0.12) 4px
  );
}

/* Heading with glitch effect — override existing .glitch for hero */
.hero-glitch-heading { position: relative; display: inline-block; }
.hero-glitch-heading::before,
.hero-glitch-heading::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-glitch-heading::before {
  color: #ff3b3b; transform: translate(-2px, 0);
  mix-blend-mode: screen;
  animation: hgH 3.2s infinite steps(1);
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.hero-glitch-heading::after {
  color: var(--accent); transform: translate(2px, 0);
  mix-blend-mode: screen;
  animation: hgH 3.8s infinite steps(1) reverse;
  clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
}
@keyframes hgH {
  0%, 90%, 100% { transform: translate(0); clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%); }
  91% { transform: translate(-4px, 1px); clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%); }
  93% { transform: translate(3px, -2px); clip-path: polygon(0 60%, 100% 60%, 100% 85%, 0 85%); }
  95% { transform: translate(-2px, 2px); clip-path: polygon(0 10%, 100% 10%, 100% 55%, 0 55%); }
}

/* HERO — Right category list */
.hero-cats li {
  cursor: pointer;
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 230, 225, 0.4);
  transition: color 0.3s ease, -webkit-text-stroke-color 0.3s ease, transform 0.3s ease;
}
.hero-cats li.is-active, .hero-cats li:hover {
  color: var(--cream);
  -webkit-text-stroke-color: var(--cream);
  transform: translateX(8px);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.hero-cats li { -webkit-text-stroke-color: rgba(232, 230, 225, 0.65); }

/* Scroll down arrow */
.scroll-down {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 64px;
  display: flex; align-items: flex-start; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 9999px;
}
.scroll-down::after {
  content: ''; width: 4px; height: 8px; margin-top: 8px;
  background: var(--accent); border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(32px); opacity: 0; }
}

/* ==========================================================================
   SERVICES — list rows with image preview on hover
   ========================================================================== */
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: padding 0.3s ease;
}
.service-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.service-row__num {
  font-family: 'Montserrat Alternates', sans-serif; font-weight: 800;
  color: rgba(232, 230, 225, 0.3);
  font-size: 1rem; letter-spacing: 0.15em;
  transition: color 0.3s ease;
}
.service-row__title {
  font-family: 'Jost', sans-serif; font-weight: 500;
  color: var(--cream);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  transition: transform 0.3s ease, color 0.3s ease;
}
.service-row__tags {
  display: flex; gap: 0.5rem;
  color: rgba(232, 230, 225, 0.5);
  font-size: 0.75rem; font-family: 'Jost', sans-serif;
  text-transform: uppercase; letter-spacing: 0.15em;
}
.service-row__arrow {
  width: 48px; height: 48px; border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(232, 230, 225, 0.6);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.service-row:hover .service-row__num { color: var(--accent); }
.service-row:hover .service-row__title { color: var(--accent-light); transform: translateX(8px); }
.service-row:hover .service-row__arrow {
  background: var(--accent); color: var(--ink); border-color: var(--accent);
  transform: rotate(-45deg);
}

/* Floating image preview on hover */
.service-preview {
  position: fixed;
  top: 0; left: 0;
  width: 280px; height: 340px;
  border-radius: 0.75rem;
  overflow: hidden;
  pointer-events: none;
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 40;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  display: none;
}
.service-preview.is-visible { opacity: 1; transform: scale(1); }
.service-preview img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1024px) { .service-preview { display: block; } }

/* ==========================================================================
   PORTFOLIO (masonry + filter)
   ========================================================================== */
.portfolio-item {
  position: relative; overflow: hidden; border-radius: 0.75rem;
  background: var(--ink-2);
}
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: grayscale(0.2);
}
.portfolio-item:hover img { transform: scale(1.06); filter: grayscale(0); }
.portfolio-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,14,16,0.9) 0%, rgba(14,14,16,0) 60%);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item.is-hidden { display: none; }

/* Portfolio marquee (infinite left scroll) */
.portfolio-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.portfolio-marquee__track {
  display: flex;
  width: max-content;
  animation: portfolio-marquee-scroll 50s linear infinite;
  will-change: transform;
}
.portfolio-marquee--slow .portfolio-marquee__track {
  animation-duration: 70s;
}
.portfolio-marquee:hover .portfolio-marquee__track { animation-play-state: paused; }
.portfolio-marquee__item {
  flex: 0 0 auto;
  width: 260px;
  height: 190px;
  margin-right: 1.25rem;
  border-radius: 0.75rem;
}
.portfolio-marquee__item--tall { height: 210px; width: 280px; }
.portfolio-marquee__item--wide { width: 340px; }
@media (min-width: 768px) {
  .portfolio-marquee__item { width: 320px; height: 240px; }
  .portfolio-marquee__item--tall { height: 260px; width: 340px; }
  .portfolio-marquee__item--wide { width: 400px; }
}
@keyframes portfolio-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-marquee__track { animation: none; }
}

.filter-btn {
  font-family: 'Jost', sans-serif; font-weight: 500;
  color: rgba(232, 230, 225, 0.5);
  padding: 0.5rem 1.25rem; border-radius: 9999px;
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.filter-btn:hover { color: var(--cream); }
.filter-btn.is-active {
  color: var(--accent);
  border-color: rgba(212, 165, 116, 0.3);
  background: rgba(212, 165, 116, 0.08);
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1); }
.testimonial-slide { flex: 0 0 100%; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  transition: background-color 0.2s ease, width 0.2s ease;
  cursor: pointer;
}
.testimonial-dot.is-active { background: var(--accent); width: 32px; border-radius: 9999px; }

/* Testimonial image crossfade stack */
.testimonial-image {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.6s ease, transform 1.2s ease;
  transform: scale(1.02);
}
.testimonial-image.is-active { opacity: 1; transform: scale(1); }
.testimonial-image img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.form-input {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.875rem 0;
  color: var(--cream);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s ease;
  outline: none;
}
.form-input::placeholder { color: rgba(232, 230, 225, 0.4); }
.form-input:focus { border-bottom-color: var(--accent); }

/* ==========================================================================
   INSTAGRAM GRID
   ========================================================================== */
.insta-item {
  position: relative; overflow: hidden; aspect-ratio: 1;
}
.insta-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.insta-item:hover img { transform: scale(1.08); }
.insta-item__overlay {
  position: absolute; inset: 0;
  background: rgba(14, 14, 16, 0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
  color: var(--accent);
}
.insta-item:hover .insta-item__overlay { opacity: 1; }

/* ==========================================================================
   VIDEO MODAL / LIGHTBOX
   ========================================================================== */
.video-modal {
  display: none;
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center; justify-content: center; padding: 1rem;
}
.video-modal.is-open { display: flex; }

.play-btn {
  width: 80px; height: 80px; border-radius: 9999px;
  background: var(--accent); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background-color 0.2s ease;
  cursor: pointer; position: relative;
}
.play-btn::before {
  content: ''; position: absolute; inset: -8px;
  border: 1px solid var(--accent); border-radius: 9999px;
  animation: playPulse 2s ease-out infinite;
}
@keyframes playPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.play-btn:hover { transform: scale(1.08); background: var(--accent-dark); }

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */
#scrollTopBtn {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 48px; height: 48px; border-radius: 9999px;
  background: var(--accent); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
  cursor: pointer; border: 0;
}
#scrollTopBtn.is-visible { opacity: 1; visibility: visible; }
#scrollTopBtn:hover { background: var(--accent-dark); }

/* ==========================================================================
   SOCIAL SIDE BAR
   ========================================================================== */
.social-side {
  position: fixed; left: 24px; top: 50%; transform: translateY(-50%);
  z-index: 50; display: none;
  border: 0; padding: 0; margin: 0; background: transparent;
}
.social-side::before { content: none; display: none; }
@media (min-width: 1280px) { .social-side { display: flex; } }
.social-side ul { display: flex; flex-direction: column; gap: 0.875rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.social-side li { list-style: none; margin: 0; padding: 0; }
.social-side a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 9999px;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.social-side a:hover { transform: translateX(3px) scale(1.08); filter: brightness(1.1); }
.social-side a.sc-facebook { background: #1877F2; }
.social-side a.sc-x { background: #000; border: 1px solid rgba(255,255,255,0.15); }
.social-side a.sc-linkedin { background: #0A66C2; }
.social-side a.sc-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-side a.sc-behance { background: #1769FF; }
.social-side a.sc-pinterest { background: #E60023; }

/* ==========================================================================
   COUNTER
   ========================================================================== */
.counter-num {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--accent);
  line-height: 1;
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
