/* ═══════════════════════════════════════════════════════
   SECTIONS — Editorial Layouts
   ═══════════════════════════════════════════════════════ */

/* ── Hero Section (Cinematic Full-Bleed) ──────────────── */
.hero-cinematic-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--true-black);
  overflow: hidden;
  padding: 0;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(10%) contrast(1.05);
  opacity: 0.5; /* Makes video blend into the black background for a deep, transparent look */
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.85) 70%, rgba(5,5,5,0.95) 100%);
  z-index: 1;
}

.hero-content-centered {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content-centered .hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 1.05;
  color: var(--pure-white);
  margin: 0 0 var(--space-sm) 0;
  text-transform: none;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--metallic-gold) 0%, transparent 100%);
  animation: scrollPulse 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--metallic-gold);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--pure-white);
  text-transform: none;
  margin-bottom: var(--space-md);
  max-width: 480px;
  line-height: 1.6;
}

/* ── About Section ──────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
}

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

.about-image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--metallic-gold);
  z-index: -1;
}

.about-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0,0,0,0.1);
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--true-black);
  line-height: 1;
}

/* ── Services Section ───────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl) var(--space-md);
  margin-top: var(--space-2xl);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  background: var(--dark-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: var(--space-md);
  transition: all var(--duration-fast);
}

.service-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.service-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease-editorial);
}

.service-item:hover .service-image {
  transform: scale(1.05);
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-xs);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--pure-white);
  letter-spacing: 0.02em;
}

.service-price {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--metallic-gold);
  letter-spacing: 0.05em;
}

.service-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Portfolio Section ──────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-3xl);
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reveal-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  width: 100%;
}

.reveal-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--true-black);
}

.reveal-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-card.revealed .reveal-card-image {
  opacity: 1;
  transform: scale(1);
}

.reveal-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
  z-index: 2;
}

.reveal-card.revealed .reveal-card-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.reveal-text {
  color: var(--metallic-gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--metallic-gold);
  padding: 12px 24px;
  transition: all var(--duration-fast);
}

.reveal-card:hover .reveal-text {
  background: var(--metallic-gold);
  color: var(--true-black);
}

.reveal-card-label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--true-black);
  margin-top: var(--space-xs);
}

/* ── Reviews Section ────────────────────────────────── */
.reviews-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  margin-top: var(--space-3xl);
}

.review-card {
  flex: 0 0 100%;
  max-width: 800px;
  scroll-snap-align: center;
  background: var(--off-white);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,0.05);
}

.review-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: var(--space-lg);
  color: var(--true-black);
}

.review-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--metallic-gold);
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--dark-charcoal);
  color: var(--white-80);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-4xl);
  margin-bottom: var(--space-4xl);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--pure-white);
  margin-bottom: var(--space-md);
  text-transform: none;
  letter-spacing: 0.02em;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast);
}

.footer-contact-item:hover {
  color: var(--metallic-gold);
}

.footer-contact-item strong {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--pure-white);
  margin-bottom: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Entrance Animations ────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-editorial), transform 1s var(--ease-editorial);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Transformations (Before/After Slider) ──────────── */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: var(--space-2xl) auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  user-select: none;
}

.before-image, .after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-image img, .after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.after-image {
  z-index: 1;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.badge {
  position: absolute;
  bottom: var(--space-md);
  background: var(--true-black);
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.before-badge {
  right: var(--space-md);
}

.after-badge {
  left: var(--space-md);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: var(--pure-white);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.handle-line {
  height: 100%;
  width: 100%;
  background: var(--metallic-gold);
}

.handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--true-black);
  border: 1px solid var(--metallic-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  color: var(--metallic-gold);
}

.handle-button svg {
  width: 14px;
  height: 14px;
}

.slider-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
  padding: 0;
}
