/* ============================================================
   LENS & LIGHT PHOTOGRAPHY — style.css
   Luxury Dark Photography Website
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES (Design Tokens)
   ============================================================ */
:root {
  /* Colors */
  --gold:          #C9A646;
  --gold-light:    #DDB95E;
  --gold-dark:     #A07830;
  --gold-glow:     rgba(201, 166, 70, 0.22);
  --dark:          #0A0A0A;
  --dark-800:      #111111;
  --dark-700:      #161616;
  --dark-600:      #1E1E1E;
  --dark-500:      #262626;
  --white:         #FFFFFF;
  --white-60:      rgba(255,255,255,0.6);
  --white-40:      rgba(255,255,255,0.4);
  --white-20:      rgba(255,255,255,0.2);
  --white-10:      rgba(255,255,255,0.08);
  --white-05:      rgba(255,255,255,0.05);

  /* Typography */
  --font-display:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Montserrat', 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py:    96px;
  --container-max: 1280px;
  --container-px:  24px;

  /* Transitions */
  --tr-fast:  0.2s ease;
  --tr-med:   0.35s ease;
  --tr-slow:  0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius — ALL ZERO for sharp editorial look */
  --radius-sm:  0px;
  --radius-md:  0px;
  --radius-lg:  0px;
  --radius-xl:  0px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-800); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: var(--section-py);
}

/* Gold text */
.gold { color: var(--gold); }
.italic {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 500;
}

/* Section label (eyebrow) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 28px;
}
.section-label--left { display: flex; }

.section-label__line {
  width: 70px;
  height: 1px;
  background: rgba(201,166,70,0.8);
  flex-shrink: 0;
}

.section-label__text {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 7px;
  text-transform: uppercase;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  color: var(--white);
}

.section-title--left {
  text-align: left;
  font-family: var(--font-display);
}

.section-desc {
  color: var(--white-40);
  font-size: 0.78rem;
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.9;
  text-transform: uppercase;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast), color var(--tr-fast), border-color var(--tr-fast);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn--gold {
  background: var(--gold);
  color: var(--dark);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px var(--gold-glow);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px) scale(1.02);
}

/* Ghost button — subtle, secondary action with glass blur */
.btn--ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.30);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px) scale(1.02);
}

/* Large CTA size for hero */
.btn--lg {
  padding: 18px 40px;
  font-size: 12px;
  letter-spacing: 0.25em;
  gap: 14px;
}
.btn--lg .btn__icon {
  width: 18px;
  height: 18px;
  transition: transform var(--tr-fast);
}
.btn--lg:hover .btn__icon { transform: translateX(4px); }

.btn--full { width: 100%; }

.btn__icon {
  width: 16px;
  height: 16px;
}

/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 62px;
  padding: 0 9%;
  display: flex;
  align-items: center;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.15);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  transition: background var(--tr-med);
  border-radius: 0 !important;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.navbar__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 100px;
  max-width: 350px;
  width: auto;
  flex-shrink: 0;
  transition: transform var(--tr-med);
  object-fit: contain;
}
.navbar__logo:hover .navbar__logo-img { transform: scale(1.08); }

.navbar__logo-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: transform var(--tr-med);
}
.navbar__logo:hover .navbar__logo-icon { transform: scale(1.12); }

.navbar__logo-text {
  display: flex;
  flex-direction: column;
}

.navbar__logo-brand {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navbar__logo-sub {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 3px;
}

.navbar__logo-dot {
  position: absolute;
  top: 0;
  right: -8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  letter-spacing: 3px;
  text-transform: none;
  transition: color var(--tr-fast);
  position: relative;
  line-height: 1;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--tr-med);
}

.navbar__link:hover,
.navbar__link.active {
  color: #d8c27a;
}
.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }

/* CTA */
.navbar__cta {
  height: 40px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,166,70,0.85);
  background: rgba(201,166,70,0.12);
  color: #f5d36b;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 !important;
  flex-shrink: 0;
  transition: background var(--tr-fast), color var(--tr-fast);
}
.navbar__cta:hover {
  background: var(--gold);
  color: #0b0b0b;
  transform: none;
  box-shadow: none;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--tr-fast);
}
.navbar__hamburger:hover { background: var(--white-10); }
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--tr-med), opacity var(--tr-fast), width var(--tr-fast);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: rgba(10,10,10,0.99);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 40px 40px;
  transform: translateX(100%);
  transition: transform var(--tr-slow);
  display: flex;
  flex-direction: column;
  border-radius: 0;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu__close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-10);
  border-radius: 0;
  color: var(--white);
  font-size: 1rem;
  transition: background var(--tr-fast);
}
.mobile-menu__close:hover { background: var(--white-20); }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--white-10);
  transition: color var(--tr-fast), padding-left var(--tr-med);
}
.mobile-menu__link:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-menu__cta {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 0;
  transition: background var(--tr-fast), transform var(--tr-fast);
}
.mobile-menu__cta:hover {
  background: var(--gold-light);
  transform: scale(1.02);
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-med);
}
.mobile-menu__overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* --- Slideshow slides (crossfade) --- */
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
  pointer-events: none;
}
.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__bg-img,
.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* slow ken-burns-style zoom for the active slide */
  transform: scale(1.05);
  transition: transform 0.1s linear;
}
.hero__slide.is-active .hero__bg-img {
  animation: kenBurns 8s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.05) translateY(0); }
  to   { transform: scale(1.12) translateY(-8px); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.85) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.30) 45%, rgba(10,10,10,0.98) 100%);
}

/* --- Slideshow nav arrows --- */
.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background var(--tr-fast), color var(--tr-fast), border-color var(--tr-fast), transform var(--tr-fast);
  opacity: 0;
}
.hero:hover .hero__nav { opacity: 1; }
.hero__nav:hover {
  background: rgba(201,166,70,0.85);
  color: #0A0A0A;
  border-color: var(--gold);
}
.hero__nav svg { width: 22px; height: 22px; }
.hero__nav--prev { left: 24px; }
.hero__nav--next { right: 24px; }

/* --- Slide indicator dots --- */
.hero__dots {
  display: flex;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__dot {
  width: 24px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--tr-fast), width var(--tr-fast);
}
.hero__dot:hover { background: rgba(255,255,255,0.6); }
.hero__dot.is-active {
  background: var(--gold);
  width: 36px;
}

/* Bokeh particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0.4; }
  50%  { opacity: 0.8; }
  100% { transform: translateY(-120px) scale(0.6); opacity: 0; }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 0;
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 7vw, 7.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--white);
  text-shadow: 0 6px 50px rgba(0,0,0,0.75), 0 2px 12px rgba(0,0,0,0.5);
}

/* Eyebrow above hero heading — better contrast */
.hero__eyebrow .section-label__text {
  color: #f0d77a;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  font-weight: 600;
  letter-spacing: 5px;
  font-size: 12px;
}
.hero__eyebrow .section-label__line {
  background: rgba(240, 215, 122, 0.85);
  width: 50px;
}

.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.65);
  text-align: center;
  line-height: 1.55;
  max-width: 640px;
  margin: 22px auto 28px;
}

/* Service tag pills (replaces dot-separated text) */
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 38px;
  max-width: 720px;
  padding: 0;
  list-style: none;
}
.hero__tags li {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--tr-fast), border-color var(--tr-fast), color var(--tr-fast);
}
.hero__tags li:hover {
  background: rgba(201,166,70,0.18);
  border-color: rgba(201,166,70,0.6);
  color: #f0d77a;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
}

/* -------------------------------------------------------
   Hero footer — shared absolute container that stacks
   stats, pagination dots and scroll cue without collision
------------------------------------------------------- */
.hero__footer {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 16px;
  pointer-events: none;
}
.hero__footer > * { pointer-events: auto; }

/* Hero stats — No card box, just gold number + label */
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 880px;
  flex-wrap: wrap;
  row-gap: 28px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 4px 28px;
  min-width: 150px;
  border-right: 1px solid rgba(201,166,70,0.3);
}

.hero__stat:last-child {
  border-right: none;
}

/* Remove old pseudo-element divider */
.hero__stat + .hero__stat::before {
  display: none;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}

.hero__stat-label {
  font-size: 0.72rem;
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* Scroll indicator */
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--white-40);
  cursor: pointer;
  transition: color var(--tr-fast);
}
.hero__scroll:hover { color: var(--gold); }

.hero__scroll-text {
  font-size: 8px;
  font-family: var(--font-sans);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  animation: bounce 1.8s ease-in-out infinite;
}
.hero__scroll-arrow svg { width: 100%; height: 100%; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ============================================================
   7. PORTFOLIO SECTION
   ============================================================ */
.portfolio { background: #0D0D0D; }

.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 0;
  font-size: 9px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white-60);
  background: transparent;
  transition: all var(--tr-med);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* Gallery grid */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Photo card */
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--dark-700);
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: opacity var(--tr-med), transform var(--tr-med);
}

.photo-card.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.photo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.photo-card:hover .photo-card__img { transform: scale(1.1); }

/* Hover overlay */
.photo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--tr-med);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.photo-card:hover .photo-card__overlay { opacity: 1; }

.photo-card__view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.photo-card__view svg { width: 14px; height: 14px; }

.photo-card__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* Category badge */
.photo-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.75);
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  font-family: var(--font-sans);
  padding: 4px 10px;
  border-radius: 0;
  border: 1px solid rgba(201,168,70,0.35);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* New badge */
.photo-card__new {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 8px;
  font-weight: 700;
  font-family: var(--font-sans);
  padding: 4px 9px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   8. VIDEOS SECTION
   ============================================================ */
.videos { background: var(--dark); }

.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  aspect-ratio: 16/10;
  background: var(--dark-700);
  transition: transform var(--tr-med), box-shadow var(--tr-med);
}
.video-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.video-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.video-card:hover .video-card__thumb { transform: scale(1.08); }

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background var(--tr-med);
}
.video-card:hover .video-card__overlay { background: rgba(0,0,0,0.25); }

/* Play button */
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__play-btn {
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(201,166,70,0.5);
  transition: transform var(--tr-fast), box-shadow var(--tr-fast);
}
.video-card__play-btn svg {
  width: 20px;
  height: 20px;
  color: var(--dark);
  fill: var(--dark);
  margin-left: 3px;
}
.video-card:hover .video-card__play-btn {
  transform: scale(1.2);
  box-shadow: 0 0 40px rgba(201,168,76,0.7);
}

.video-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.video-card__cat {
  color: var(--gold);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-family: var(--font-sans);
  
  /* Removed the background, border, and padding to get rid of the box */
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 4px; /* Added a small margin to space it nicely above the title */
}
.video-card__title {
  color: var(--white);
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video-card__film {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.65);
  padding: 5px;
  border-radius: 0;
}
.video-card__film svg { width: 14px; height: 14px; color: var(--gold); }

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about { background: #0D0D0D; overflow: hidden; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image side */
.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 0;
}

.about__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
  border-radius: 0;
}

.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border-radius: 0;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  box-shadow: 0 20px 50px var(--gold-glow);
}
@keyframes slowSpin {
  0%   { box-shadow: 0 20px 50px var(--gold-glow); }
  50%  { box-shadow: 0 20px 60px rgba(201,166,70,0.5); }
  100% { box-shadow: 0 20px 50px var(--gold-glow); }
}

.about__badge-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.about__badge-label {
  font-size: 0.52rem;
  font-weight: 700;
  font-family: var(--font-sans);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-top: 3px;
}

.about__image-border {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(201,166,70,0.18);
  border-radius: 0;
  pointer-events: none;
}

/* Content side */
.about__para {
  color: var(--white-40);
  font-size: 0.8rem;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0 40px;
}

.about__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--dark-700);
  border: 1px solid var(--white-05);
  border-radius: 0;
  transition: border-color var(--tr-med), transform var(--tr-med);
}
.about__stat:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

.about__stat-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.about__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.about__stat-label {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-sans);
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 3px;
}

/* ============================================================
   10. SERVICES SECTION
   ============================================================ */
.services { background: var(--dark); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 40px 32px;
  background: var(--dark-800);
  border: 1px solid var(--white-05);
  border-radius: 0;
  transition: transform var(--tr-med), border-color var(--tr-med), box-shadow var(--tr-med);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px var(--gold-glow);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(201,166,70,0.08);
  border-radius: 0;
  border-left: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--tr-med);
}
.service-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}
.service-card:hover .service-card__icon { background: rgba(201,168,76,0.2); }

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 14px;
  transition: color var(--tr-fast);
}
.service-card:hover .service-card__title { color: var(--gold); }

.service-card__desc {
  color: var(--white-40);
  font-size: 0.78rem;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.service-card__line {
  width: 32px;
  height: 1px;
  background: rgba(201,168,76,0.4);
  margin-top: 22px;
  transition: width 0.5s ease;
}
.service-card:hover .service-card__line { width: 100%; }

/* ============================================================
   11. CONTACT / BOOKING SECTION
   ============================================================ */
.contact { background: #0D0D0D; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

/* Info side */
.contact__info-items { margin-bottom: 40px; }

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--white-05);
}
.contact__info-item:last-child { border-bottom: none; }

.contact__info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,166,70,0.08);
  border-radius: 0;
  border-left: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__info-icon svg { width: 18px; height: 18px; color: var(--gold); }

.contact__info-label {
  display: block;
  font-size: 8px;
  font-family: var(--font-sans);
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 3px;
}
.contact__info-value {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.contact__info-link {
  text-decoration: none;
  transition: color var(--tr-fast);
}
.contact__info-link:hover { color: var(--gold); }

.footer__contact-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-fast);
}
.footer__contact-link:hover { color: var(--gold); }

/* Testimonial */
.testimonial {
  padding: 28px 32px;
  background: var(--dark-700);
  border: 1px solid rgba(201,166,70,0.2);
  border-left: 2px solid var(--gold);
  border-radius: 0;
  position: relative;
}

.testimonial__quote {
  width: 28px;
  height: 28px;
  color: rgba(201,168,76,0.25);
  position: absolute;
  top: 24px;
  right: 24px;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--white-60);
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.testimonial__name {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Form */
.contact__form-wrap {
  background: var(--dark-700);
  border: 1px solid var(--white-05);
  border-top: 1px solid rgba(201,166,70,0.2);
  border-radius: 0;
  padding: 40px;
}

.contact__form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 8px;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.form-input {
  width: 100%;
  background: var(--dark-600);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.82rem;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-input.error { border-color: #ef4444; }
.form-input::-webkit-calendar-picker-indicator { filter: invert(0.5); }

.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' 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; padding-right: 40px; }
.form-select option { background: #1A1A1A; color: var(--white); }

.form-textarea { resize: none; min-height: 110px; }

.form-error {
  font-size: 0.72rem;
  color: #ef4444;
  min-height: 16px;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.footer {
  background: var(--dark-800);
  padding-top: 72px;
  border-top: 1px solid var(--white-05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__logo { margin-bottom: 20px; }

/* Double size for footer logo */
.footer__logo .navbar__logo-img {
  height: 200px;
  max-width: 700px;
}

.footer__brand-desc {
  color: var(--white-40);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  transition: border-color var(--tr-fast), color var(--tr-fast), background var(--tr-fast), transform var(--tr-fast);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

.footer__heading {
  font-size: 9px;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 22px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__link {
  font-size: 0.85rem;
  color: var(--white-40);
  transition: color var(--tr-fast), padding-left var(--tr-med);
}
.footer__link:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--white-40);
}
.footer__contact svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

.footer__divider { height: 1px; background: var(--white-05); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy, .footer__made {
  font-size: 0.78rem;
  color: var(--white-40);
}

/* ============================================================
   13. LIGHTBOX MODAL
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-med);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.lightbox__content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.9);
  transition: transform var(--tr-slow);
}
.lightbox.open .lightbox__content { transform: scale(1); }

.lightbox__img-wrap {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: var(--dark-700);
}
.lightbox__img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr-fast), color var(--tr-fast), transform var(--tr-fast);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(201,168,76,0.2);
  color: var(--gold);
  transform: scale(1.1);
}

.lightbox__close {
  top: -52px;
  right: 0;
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.lightbox__prev {
  top: 50%;
  left: -64px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.lightbox__prev:hover { transform: translateY(-50%) scale(1.1); }

.lightbox__next {
  top: 50%;
  right: -64px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.lightbox__next:hover { transform: translateY(-50%) scale(1.1); }

.lightbox__prev svg,
.lightbox__next svg { width: 22px; height: 22px; }

.lightbox__info { text-align: center; }
.lightbox__category {
  font-size: 9px;
  font-family: var(--font-sans);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.lightbox__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.lightbox__counter {
  font-size: 0.72rem;
  color: var(--white-40);
  display: block;
}

/* ============================================================
   14. VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-med);
}
.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.video-modal__content {
  position: relative;
  max-width: 960px;
  width: 100%;
  z-index: 1;
  transform: scale(0.9);
  transition: transform var(--tr-slow);
}
.video-modal.open .video-modal__content { transform: scale(1); }

.video-modal__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 0;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--tr-fast), color var(--tr-fast);
}
.video-modal__close:hover {
  background: rgba(201,168,76,0.2);
  color: var(--gold);
}

.video-modal__player {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}

.video-modal__video,
.video-modal__iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-modal__info {
  text-align: center;
  margin-top: 16px;
}

/* ============================================================
   15. SCROLL REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal="left"] {
  transform: translateX(-50px);
  opacity: 0;
}
[data-reveal="right"] {
  transform: translateX(50px);
  opacity: 0;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   16. RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .navbar__nav { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__stats { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .hero__stat { border-right: none; }
  .hero__stat:nth-child(odd) { border-right: 1px solid rgba(201,166,70,0.3); }

  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }

  .videos__grid { grid-template-columns: repeat(2, 1fr); }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about__image { height: 420px; }
  .about__badge { bottom: -20px; right: -10px; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .lightbox__prev { left: -10px; }
  .lightbox__next { right: -10px; }
}

/* ============================================================
   17. RESPONSIVE — MOBILE (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-py: 56px; --container-px: 18px; }

  .hero__heading { font-size: clamp(3rem, 12vw, 4.8rem); line-height: 1; }
  .hero__sub { font-size: 0.95rem; line-height: 1.6; max-width: 90%; margin-left: auto; margin-right: auto; }
  .hero__tags { gap: 6px; margin-bottom: 28px; }
  .hero__tags li { font-size: 9px; padding: 5px 10px; letter-spacing: 0.18em; }
  .hero__buttons { flex-direction: column; align-items: center; }
  .hero__buttons .btn { width: 100%; max-width: 300px; }
  .hero__stats { gap: 24px; row-gap: 26px; max-width: 100%; }
  .hero__stat { padding: 4px 18px; min-width: 130px; border-right: none; }
  .hero__stat-value { font-size: 2.1rem; }
  .hero__stat-label { font-size: 0.65rem; }
  .hero__stat + .hero__stat::before { display: none; }

  .portfolio__filters { gap: 8px; }
  .filter-btn { font-size: 10px; padding: 10px 18px; min-height: 40px; }
  .portfolio__grid { grid-template-columns: 1fr; }

  .videos__grid { grid-template-columns: 1fr; }
  .video-card { aspect-ratio: 16/9; }

  .services__grid { grid-template-columns: 1fr; }

  .about__stats { grid-template-columns: 1fr 1fr; }
  .about__image-border { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .contact__form-wrap { padding: 24px 18px; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .lightbox__prev { left: 4px; width: 36px; height: 36px; }
  .lightbox__next { right: 4px; width: 36px; height: 36px; }

  .section-title { font-size: clamp(2rem, 9vw, 3rem); }
}

/* ============================================================
   18. ENHANCEMENTS — Preloader, Scroll Progress, FABs, FAQ, Toast
   ============================================================ */

/* Skip link (a11y) */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 5000;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: top var(--tr-fast);
}
.skip-link:focus { top: 16px; outline: none; }

/* Improved keyboard focus visibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.filter-btn:focus-visible,
.form-input:focus-visible,
.navbar__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------------- Preloader ---------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.preloader__ring {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(201,166,70,0.15);
  border-top-color: var(--gold);
  border-radius: 50% !important;
  animation: spin 0.9s linear infinite;
}
.preloader__brand {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.55em;
  color: var(--white-60);
  font-weight: 600;
  padding-left: 0.55em;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------- Scroll progress ---------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 1500;
  transition: width 0.08s linear;
  pointer-events: none;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ---------------- Floating Action Buttons ---------------- */
.fab {
  position: fixed;
  right: 22px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
  border-radius: 50% !important;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), opacity var(--tr-med), background var(--tr-fast);
}
.fab svg { width: 26px; height: 26px; }
.fab:hover { transform: translateY(-3px) scale(1.06); }

.fab--whatsapp {
  bottom: 22px;
  background: #25D366;
}
.fab--whatsapp:hover { background: #1ebe5b; box-shadow: 0 14px 32px rgba(37,211,102,0.45); }

.fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50% !important;
  background: #25D366;
  opacity: 0.6;
  animation: fabPulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.7); opacity: 0; }
}

.fab__tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--dark-800);
  color: var(--white);
  font-size: 11px;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  white-space: nowrap;
  border: 1px solid var(--white-10);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-fast), transform var(--tr-fast);
}
.fab--whatsapp:hover .fab__tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.fab--top:hover .fab__tip--left {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.fab--top {
  bottom: 88px;
  background: var(--gold);
  color: var(--dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.fab--top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fab--top:hover { background: var(--gold-light); box-shadow: 0 14px 32px var(--gold-glow); }

/* ---------------- Toast notifications ---------------- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--dark-700);
  border: 1px solid rgba(201,166,70,0.4);
  border-left: 3px solid var(--gold);
  color: var(--white);
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  z-index: 3000;
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
  opacity: 0;
  max-width: calc(100vw - 32px);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast.error {
  border-left-color: #ef4444;
  border-color: rgba(239,68,68,0.4);
}
.toast.error .toast__icon { color: #ef4444; }
.toast__icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------------- FAQ ---------------- */
.faq { background: var(--dark); }

.faq__list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  background: var(--dark-700);
  border: 1px solid var(--white-05);
  border-left: 2px solid rgba(201,166,70,0.3);
  transition: border-color var(--tr-med), background var(--tr-med);
}
.faq__item[open] {
  border-left-color: var(--gold);
  background: var(--dark-600);
}

.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--tr-fast);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold); }
.faq__item[open] .faq__q { color: var(--gold); }

.faq__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,166,70,0.4);
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--tr-med), background var(--tr-fast);
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--dark);
}

.faq__a {
  padding: 0 24px 22px;
  color: var(--white-60);
  font-size: 0.85rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  max-width: 720px;
}

/* ---------------- Portfolio empty state ---------------- */
.portfolio__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--white-40);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.03em;
}

/* ---------------- Lightbox enhancements ---------------- */
.lightbox__img {
  cursor: zoom-in;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  -webkit-user-drag: none;
  user-select: none;
}
.lightbox__img.zoomed {
  cursor: zoom-out;
  transform: scale(1.6);
}
.lightbox__hint {
  display: block;
  margin-top: 6px;
  font-size: 0.65rem;
  color: var(--white-40);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------------- Reduced motion ---------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bg-img { transform: none !important; }
}

/* ---------------- Mobile FAB adjustments ---------------- */
@media (max-width: 640px) {
  .fab { width: 48px; height: 48px; right: 16px; }
  .fab svg { width: 22px; height: 22px; }
  .fab--whatsapp { bottom: 16px; }
  .fab--top { bottom: 76px; }
  .fab__tip { display: none; }
  .theme-toggle--floating { left: 14px; width: 40px; height: 40px; }
  .theme-toggle--floating svg { width: 18px; height: 18px; }
  .theme-toggle__tip { display: none; }
  .faq__q { font-size: 0.95rem; padding: 16px 18px; }
  .hero__nav { width: 38px; height: 38px; opacity: 1; }
  .hero__nav svg { width: 18px; height: 18px; }
  .hero__nav--prev { left: 8px; }
  .hero__nav--next { right: 8px; }
  .hero__dots { padding: 6px 10px; gap: 8px; }
  .hero__dot { width: 18px; }
  .hero__dot.is-active { width: 26px; }
  .hero__footer { gap: 14px; padding-bottom: 20px; }
  .faq__a { padding: 0 18px 18px; font-size: 0.8rem; }
  .toast { bottom: 90px; font-size: 0.78rem; padding: 12px 16px; }
}

/* ============================================================
   GLOBAL SHARP-EDGE SAFETY OVERRIDE
   Ensures no rounded corners remain anywhere on the site
   (except where explicitly needed for layout)
   ============================================================ */
*,
*::before,
*::after {
  border-radius: 0 !important;
}

/* Re-allow rounded corners for components that need them */
.fab,
.fab__pulse,
.preloader__ring {
  border-radius: 50% !important;
}

/* ============================================================
   19. THEME TOGGLE — Dark / Light Mode
   ============================================================ */

/* --- Theme toggle button (floating, left side, slightly above middle) --- */
.theme-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(201,166,70,0.4);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: color var(--tr-fast), background var(--tr-fast), border-color var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast);
}
.theme-toggle:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,166,70,0.15);
  transform: scale(1.08) rotate(15deg);
  box-shadow: 0 10px 24px var(--gold-glow);
}

/* Floating variant: fixed to the left side, slightly above vertical centre */
.theme-toggle--floating {
  position: fixed;
  left: 22px;
  top: 42%;
  transform: translateY(-50%);
  z-index: 900;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}
.theme-toggle--floating:hover {
  transform: translateY(-50%) scale(1.08) rotate(15deg);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  position: absolute;
  transition: opacity var(--tr-med), transform var(--tr-med);
}
/* Dark theme = show MOON (so user knows clicking = go to light) */
[data-theme="dark"]  .theme-toggle__sun  { opacity: 0; transform: rotate(-90deg) scale(0.5); }
[data-theme="dark"]  .theme-toggle__moon { opacity: 1; transform: rotate(0) scale(1); }
/* Light theme = show SUN */
[data-theme="light"] .theme-toggle__sun  { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="light"] .theme-toggle__moon { opacity: 0; transform: rotate(90deg) scale(0.5); }

/* Tooltip */
.theme-toggle__tip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: var(--dark-800);
  color: var(--white);
  font-size: 10px;
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 12px;
  white-space: nowrap;
  border: 1px solid var(--white-10);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-fast), transform var(--tr-fast);
}
.theme-toggle--floating:hover .theme-toggle__tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* --- Mobile menu theme toggle --- */
.mobile-menu__theme {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  background: transparent;
  border: none;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  cursor: pointer;
  transition: color var(--tr-fast), padding-left var(--tr-med);
}
.mobile-menu__theme:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu__theme-icon {
  color: var(--gold);
  font-size: 1.4rem;
}

/* ============================================================
   LIGHT THEME OVERRIDES
   ============================================================ */
[data-theme="light"] {
  --gold:          #B8902C;
  --gold-light:    #C9A646;
  --gold-dark:     #8B6B1F;
  --gold-glow:     rgba(184, 144, 44, 0.20);

  /* Invert dark scale → light scale */
  --dark:          #EFEAE0;   /* page background (warm beige, gives cards contrast) */
  --dark-800:      #FFFFFF;   /* navbar / footer bg */
  --dark-700:      #FFFFFF;   /* card bg */
  --dark-600:      #F5F1E8;   /* input bg */
  --dark-500:      #E6DFD0;

  --white:         #1A1A1A;   /* primary text */
  --white-60:      rgba(26,26,26,0.78);
  --white-40:      rgba(26,26,26,0.62);
  --white-20:      rgba(26,26,26,0.28);
  --white-10:      rgba(26,26,26,0.14);
  --white-05:      rgba(26,26,26,0.08);
}

/* Section background overrides for light mode */
[data-theme="light"] body            { background-color: var(--dark); color: var(--white); }
[data-theme="light"] .portfolio      { background: #E3DBC8; }
[data-theme="light"] .videos         { background: var(--dark); }
[data-theme="light"] .about          { background: #E3DBC8; }
[data-theme="light"] .services       { background: var(--dark); }
[data-theme="light"] .faq            { background: var(--dark); }
[data-theme="light"] .contact        { background: #E3DBC8; }
[data-theme="light"] .footer         { background: #1A1A1A; color: #FFFFFF; }

/* Footer stays dark for contrast → re-invert its inner colors */
[data-theme="light"] .footer__brand-desc,
[data-theme="light"] .footer__link,
[data-theme="light"] .footer__contact li,
[data-theme="light"] .footer__copy,
[data-theme="light"] .footer__made { color: rgba(255,255,255,0.55); }
[data-theme="light"] .footer__heading { color: #FFFFFF; }
[data-theme="light"] .footer__social {
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
}
[data-theme="light"] .footer__social:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* Navbar in light mode */
[data-theme="light"] .navbar { background: rgba(247,244,238,0.4); }
[data-theme="light"] .navbar.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
[data-theme="light"] .navbar__link { color: rgba(26,26,26,0.7); }
[data-theme="light"] .navbar__link:hover,
[data-theme="light"] .navbar__link.active { color: var(--gold); }
[data-theme="light"] .theme-toggle {
  color: rgba(26,26,26,0.85);
  border-color: rgba(184,144,44,0.5);
  background: rgba(255,255,255,0.85);
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(184,144,44,0.12);
}
[data-theme="light"] .navbar__hamburger span { background: #1A1A1A; }

/* Hero stays visually dark (background image) — keep text light */
[data-theme="light"] .hero__heading,
[data-theme="light"] .hero__sub,
[data-theme="light"] .hero__stat-label,
[data-theme="light"] .hero__scroll { color: #fff; }
[data-theme="light"] .hero__sub { color: rgba(255,255,255,0.78); }
[data-theme="light"] .hero__stat-label { color: rgba(255,255,255,0.5); }

/* Card surfaces gain subtle border + shadow in light mode */
[data-theme="light"] .service-card,
[data-theme="light"] .about__stat,
[data-theme="light"] .testimonial,
[data-theme="light"] .faq__item,
[data-theme="light"] .contact__form-wrap {
  background: #FFFFFF;
  border: 1px solid rgba(26,26,26,0.14);
  box-shadow: 0 4px 18px rgba(26,26,26,0.08);
}
[data-theme="light"] .testimonial { border-left: 3px solid var(--gold); }
[data-theme="light"] .testimonial__text { color: rgba(26,26,26,0.82); }
[data-theme="light"] .faq__item { border-left: 2px solid rgba(184,144,44,0.45); }
[data-theme="light"] .faq__item[open] { background: #FBF7EC; border-left-color: var(--gold); }
[data-theme="light"] .faq__a { color: rgba(26,26,26,0.72); }
[data-theme="light"] .contact__form-wrap { border-top: 2px solid var(--gold); }
[data-theme="light"] .service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 14px 36px rgba(26,26,26,0.14), 0 0 24px var(--gold-glow);
}
[data-theme="light"] .about__stat:hover { border-color: var(--gold); }

[data-theme="light"] .form-input {
  background: #FFFFFF;
  border: 1.5px solid rgba(26,26,26,0.22);
  color: #1A1A1A;
  box-shadow: inset 0 1px 2px rgba(26,26,26,0.04);
}
[data-theme="light"] .form-input::placeholder { color: rgba(26,26,26,0.45); }
[data-theme="light"] .form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,144,44,0.18);
}
[data-theme="light"] .form-label { color: rgba(26,26,26,0.65); }

/* Contact info items: darker icon bubble + clearer text */
[data-theme="light"] .contact__info-item { border-bottom-color: rgba(26,26,26,0.12); }
[data-theme="light"] .contact__info-icon {
  background: rgba(184,144,44,0.18);
  border-left: 2px solid var(--gold);
}
[data-theme="light"] .contact__info-label { color: rgba(26,26,26,0.55); }
[data-theme="light"] .contact__info-value { color: #1A1A1A; font-weight: 500; }

/* About paragraphs */
[data-theme="light"] .about__para { color: rgba(26,26,26,0.75); }
[data-theme="light"] .about__stat-label { color: rgba(26,26,26,0.6); }

/* Section description text was almost invisible (was 0.4 alpha) */
[data-theme="light"] .section-desc { color: rgba(26,26,26,0.6); }

/* Service icon bubble: stronger so it's visible on white */
[data-theme="light"] .service-card__icon { background: rgba(184,144,44,0.15); }
[data-theme="light"] .service-card__desc { color: rgba(26,26,26,0.7); }

/* Filter buttons */
[data-theme="light"] .filter-btn {
  color: rgba(26,26,26,0.65);
  border-color: rgba(26,26,26,0.2);
}
[data-theme="light"] .filter-btn:hover { color: var(--gold); border-color: var(--gold); }
[data-theme="light"] .filter-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Toast & preloader in light */
[data-theme="light"] .toast { background: #FFFFFF; color: #1A1A1A; }
[data-theme="light"] .preloader { background: #F7F4EE; }
[data-theme="light"] .preloader__brand { color: rgba(26,26,26,0.6); }

/* Photo & video card backgrounds (visible while images load) */
[data-theme="light"] .photo-card { background: #D4CBB3; }
[data-theme="light"] .video-card { background: #D4CBB3; }

/* Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track { background: #D4CBB3; }

/* Btn outline in light mode (used on hero, stays on dark hero — leave) */
[data-theme="light"] .btn--outline { color: #fff; }   /* hero context */

/* Mobile menu drawer in light mode */
[data-theme="light"] .mobile-menu {
  background: rgba(255,255,255,0.99);
}
[data-theme="light"] .mobile-menu__close {
  background: rgba(0,0,0,0.06);
  color: #1A1A1A;
}
[data-theme="light"] .mobile-menu__link {
  color: #1A1A1A;
  border-bottom-color: rgba(26,26,26,0.08);
}
[data-theme="light"] .mobile-menu__theme {
  color: #1A1A1A;
  border-color: rgba(26,26,26,0.08);
}

/* Smooth color transition when switching themes */
body,
.navbar,
.service-card,
.faq__item,
.testimonial,
.contact__form-wrap,
.form-input,
.filter-btn,
.about__stat,
.photo-card,
.video-card,
.mobile-menu {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
