/* ═══════════════════════════════════════════════════════════
   LETSO BAUTE – Luxury Makeup Artist Website
   Designed with: deep black, warm gold, rich bronze, rose blush
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --black: #0a0807;
  --deep: #110e0c;
  --surface: #1a1410;
  --card: #221b15;
  --gold: #c9a96e;
  --gold-light: #e2c98a;
  --gold-dark: #9a7440;
  --bronze: #a0654a;
  --rose: #c8847a;
  --cream: #f5ecd7;
  --text: #e8ddd0;
  --text-muted: #8a7d6e;
  --border: rgba(201, 169, 110, 0.15);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;

  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #fdecea;
  color: #b3261e;
  text-align: center;
}


body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

/* ── SELECTION ── */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ═══════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════ */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-elastic), height 0.3s var(--ease-elastic), background 0.3s;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-smooth), opacity 0.3s;
  opacity: 0.6;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 20px;
  height: 20px;
  background: var(--gold-light);
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

/* ═══════════════════════════════
   LOADER
   ═══════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  transition: opacity 0.8s var(--ease-smooth), visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  animation: pulseGold 1.5s ease-in-out infinite;
}

@keyframes pulseGold {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0%;
  transition: width 0.1s linear;
}

.loader-text {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════
   NAVIGATION
   ═══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 3rem;
  z-index: 1000;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(10, 8, 7, 0.95);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: 0.9rem 3rem;
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  margin-right: auto;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 7, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  text-align: center;
}

.mobile-link {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--text);
  padding: 0.3em 0;
  transition: color 0.3s;
}

.mobile-link:hover {
  color: var(--gold);
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s var(--ease-smooth);
}

.hero-video.zoomed {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 8, 7, 0.85) 0%,
      rgba(10, 8, 7, 0.55) 50%,
      rgba(10, 8, 7, 0.75) 100%);
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15), transparent 70%);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(160, 101, 74, 0.12), transparent 70%);
  bottom: 10%;
  left: 5%;
  animation-delay: -3s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(200, 132, 122, 0.1), transparent 70%);
  top: 50%;
  right: 30%;
  animation-delay: -5s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  33% {
    transform: translateY(-30px) scale(1.05);
  }

  66% {
    transform: translateY(20px) scale(0.95);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s 0.5s both;
  backdrop-filter: blur(10px);
  background: rgba(201, 169, 110, 0.05);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-line {
  display: block;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s both;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.7s;
}

.hero-title-italic {
  font-style: italic;
  animation-delay: 0.9s !important;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s 1.1s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s 1.3s both;
}

/* Floating 3D Cards */
.hero-float-card {
  position: absolute;
  width: 140px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
  animation: floatCard 6s ease-in-out infinite;
  z-index: 3;
  transform-style: preserve-3d;
}

.hero-float-card img {
  height: 180px;
  object-fit: cover;
}

.hero-float-card span {
  display: block;
  background: rgba(10, 8, 7, 0.85);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-float-card--1 {
  left: 5%;
  top: 25%;
  animation-delay: 0s;
  transform: rotate(-6deg) translateY(0);
}

.hero-float-card--2 {
  right: 5%;
  bottom: 20%;
  animation-delay: -3s;
  transform: rotate(5deg) translateY(0);
}

@keyframes floatCard {

  0%,
  100% {
    transform: rotate(-6deg) translateY(0px);
  }

  50% {
    transform: rotate(-4deg) translateY(-20px);
  }
}

.hero-float-card--2 {
  animation-name: floatCard2;
}

@keyframes floatCard2 {

  0%,
  100% {
    transform: rotate(5deg) translateY(0px);
  }

  50% {
    transform: rotate(3deg) translateY(-20px);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeIn 1s 2s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.6;
  }

  50% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════
   BUTTONS
   ═══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  border-radius: 3px;
  transition: all 0.3s var(--ease-smooth);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-smooth);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% 200%;
  color: var(--black);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
  animation: gradientShift 4s ease infinite;
}

.btn-gold:hover {
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
  transform: translateY(-2px);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  transform: translateY(-2px);
}

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

.btn-arrow {
  transition: transform 0.3s;
}

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

/* ═══════════════════════════════
   SECTION SHARED
   ═══════════════════════════════ */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

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

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

/* ═══════════════════════════════
   MARQUEE
   ═══════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 0.9rem 0;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════
   ABOUT
   ═══════════════════════════════ */
.about {
  padding: 8rem 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-img-wrap {
  position: relative;
  height: 580px;
  border-radius: 4px;
  overflow: hidden;
}

.about-img-wrap img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.about-img-accent {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  pointer-events: none;
  z-index: -1;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 7, 0.6), transparent 50%);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.2rem;
  text-align: center;
  border-radius: 4px;
  transition: transform 0.3s var(--ease-elastic), box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-text .section-eyebrow {
  margin-bottom: 1rem;
}

.about-desc {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-desc strong {
  color: var(--gold);
  font-weight: 500;
}

.about-text .btn {
  margin-top: 1rem;
}

/* ═══════════════════════════════
   SERVICES
   ═══════════════════════════════ */
.services {
  padding: 8rem 3rem;
  background: var(--surface);
}

.services-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
}

.service-card {
  position: relative;
  height: 550px;
  overflow: hidden;
  cursor: pointer;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-smooth);
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 8, 7, 0.97) 0%,
      rgba(10, 8, 7, 0.6) 50%,
      rgba(10, 8, 7, 0.2) 100%);
  transition: background 0.4s;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top,
      rgba(10, 8, 7, 0.98) 0%,
      rgba(10, 8, 7, 0.7) 60%,
      rgba(10, 8, 7, 0.3) 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  transform: translateY(3rem);
  transition: transform 0.4s var(--ease-smooth);
}

.service-card:hover .service-card-content {
  transform: translateY(0);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}

.service-card:hover .service-desc {
  opacity: 1;
}

.service-price {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-btn {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s 0.15s;
}

.service-card:hover .service-btn {
  opacity: 1;
}

/* ═══════════════════════════════
   PORTFOLIO
   ═══════════════════════════════ */
.portfolio {
  padding: 8rem 3rem;
}

.portfolio-showcase {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.5rem;
  align-items: start;
}

.portfolio-main {
  position: relative;
}

.portfolio-video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.portfolio-video-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(10, 8, 7, 0.85);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.portfolio-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 530px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}

.portfolio-thumb {
  position: relative;
  height: 78px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color 0.3s, transform 0.3s var(--ease-elastic);
  flex-shrink: 0;
}

.portfolio-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.portfolio-thumb span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.3rem 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(10, 8, 7, 0.9), transparent);
  color: var(--text-muted);
}

.portfolio-thumb:hover {
  transform: scaleX(1.02);
  border-color: var(--border);
}

.portfolio-thumb.active {
  border-color: var(--gold);
}

.portfolio-thumb.active span {
  color: var(--gold);
}

/* ═══════════════════════════════
   GALLERY
   ═══════════════════════════════ */
.gallery {
  padding: 8rem 3rem;
  background: var(--surface);
  position: relative;
}

.gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s;
}

.gallery-item--tall {
  grid-row: span 2;
  height: auto;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  transition: transform 0.6s var(--ease-smooth);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 7, 0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s;
}

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

.gallery-item-overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-item:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: translateY(-4px) rotateX(2deg);
  z-index: 2;
}

/* Tilt card (JS enhanced) */
.tilt-card {
  will-change: transform;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 0.3s, color 0.3s;
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════
   PROCESS
   ═══════════════════════════════ */
.process {
  padding: 8rem 3rem;
  text-align: center;
}

.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform 0.4s var(--ease-elastic);
}

.process-step:hover {
  transform: translateY(-8px);
}

.process-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.process-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-connector {
  flex: 0 0 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  margin-top: 3rem;
  align-self: flex-start;
  opacity: 0.3;
}

/* ═══════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════ */
.testimonials {
  padding: 8rem 3rem;
  background: var(--surface);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto 2.5rem;
  overflow: hidden;
  position: relative;
}

.testimonial-card {
  flex: 0 0 calc(50% - 0.75rem);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  transition: transform 0.5s var(--ease-smooth), opacity 0.5s;
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-text::before {
  content: '"';
  color: var(--gold);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.2em;
}

.testimonial-text::after {
  content: '"';
  color: var(--gold);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.3em;
  margin-left: 0.2em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

.test-nav-btn {
  width: 44px;
  height: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-elastic);
}

.test-nav-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: scale(1.1);
}

.test-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ═══════════════════════════════
   CONTACT
   ═══════════════════════════════ */
.contact {
  padding: 8rem 3rem;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  bottom: 0;
  background: var(--surface);
  z-index: 0;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  position: relative;
  z-index: 1;
}

.contact-info .section-eyebrow {
  margin-bottom: 1rem;
}

.contact-desc {
  color: var(--text-muted);
  margin-top: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s var(--ease-elastic);
}

.contact-detail:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.contact-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-detail-value {
  color: var(--cream);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-elastic);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-4px) scale(1.1);
}

/* FORM */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group--full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.8rem 1rem;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: var(--surface);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  grid-column: span 2;
  text-align: center;
  color: var(--gold);
  font-size: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(201, 169, 110, 0.05);
  display: none;
}

.form-success.show {
  display: block;
}

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
  background: var(--deep);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: auto;
}

.footer-logo-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 600;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════
   KEYFRAMES
   ═══════════════════════════════ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .portfolio-showcase {
    grid-template-columns: 1fr;
  }

  .portfolio-thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
  }

  .portfolio-thumb {
    flex: 0 0 160px;
    height: 100px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-wrap {
    height: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact::before {
    display: none;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .nav.scrolled {
    padding: 0.75rem 1.5rem;
  }

  .hero-float-card {
    display: none;
  }

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

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

  .gallery-item--wide {
    grid-column: span 1;
  }

  .gallery-item--tall {
    grid-row: span 1;
    height: 260px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .process-connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
  }

  .testimonials-track {
    flex-direction: column;
  }

  .testimonial-card {
    flex: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group--full {
    grid-column: span 1;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-logo {
    margin-right: 0;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about,
  .services,
  .portfolio,
  .gallery,
  .process,
  .testimonials,
  .contact {
    padding: 5rem 1.5rem;
  }

  .hero-content {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-num {
    font-size: 1.5rem;
  }
}

/* ═══════════════════════════════
   WHATSAPP BOT
   ═══════════════════════════════ */
.whatsapp-bot {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  /* WhatsApp brand color */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s var(--ease-elastic), box-shadow 0.3s var(--ease-smooth);
}

.whatsapp-bot:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-bot svg {
  width: 35px;
  height: 35px;
}

@media (max-width: 768px) {
  .whatsapp-bot {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-bot svg {
    width: 30px;
    height: 30px;
  }
}