/* ============================================
   BBShots - Complete Responsive CSS
   Mobile-first with exact TailwindCSS breakpoints
   ============================================ */

/* ============================================
   CSS Variables - OKLCH colors from original
   ============================================ */
:root {
  --gold: oklch(0.75 0.08 85);
  --gold-dark: oklch(0.65 0.08 85);
  --gold-light: oklch(0.85 0.08 85);
  --background: oklch(0.05 0 0);
  --foreground: oklch(0.95 0 0);
  --card: oklch(0.08 0 0);
  --muted: oklch(0.2 0 0);
  --muted-foreground: oklch(0.55 0 0);
  --border: oklch(1 0 0 / 8%);
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

/* ============================================
   Base Reset
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background-color: black;
  color: oklch(0.95 0 0);
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Utilities
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.font-display {
  font-family: var(--font-display);
}

.text-gold {
  color: var(--gold);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  transition: color 0.3s ease;
  position: relative;
  z-index: 50;
}

.logo:hover {
  color: var(--gold);
}

.logo-dot {
  color: var(--gold);
}

/* Desktop Nav */
.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link.active {
  filter: drop-shadow(0 0 8px rgba(197, 160, 90, 0.5));
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 50;
}

.mobile-menu-btn span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu Fullscreen */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 40;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: white;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
}

.mobile-nav-link.active {
  filter: drop-shadow(0 0 12px rgba(197, 160, 90, 0.6));
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============================================
   HERO SECTION - Responsive
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-images {
  position: absolute;
  inset: 0;
  display: flex;
}

.hero-image-wrapper {
  position: relative;
  width: 33.333%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 150%;
  object-fit: cover;
  /* Mobile: color images, Desktop: grayscale with hover color */
  filter: brightness(0.6) contrast(1.1);
  transition: filter 0.7s ease;
  will-change: transform;
}

@media (min-width: 768px) {
  .hero-image {
    filter: grayscale(1) brightness(0.6) contrast(1.1);
  }

  .hero-image-wrapper:hover .hero-image {
    filter: grayscale(0) brightness(1.1) contrast(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 0 1rem;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.75rem;
  /* text-6xl */
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 6rem;
    /* md:text-8xl */
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 8rem;
    /* lg:text-9xl */
  }
}

.hero-title-main {
  display: block;
}

.hero-title-highlight {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.7;
  z-index: 20;
  pointer-events: none;
}

.hero-scroll-text {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.hero-scroll-line {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, white, transparent);
}

/* ============================================
   PROCESS SECTION - Responsive
   ============================================ */
.process-section {
  padding: 8rem 1.5rem;
  background: linear-gradient(to bottom, black, oklch(0.06 0 0));
}

.process-header {
  margin-bottom: 4rem;
}

.process-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 1rem;
}

.process-title {
  font-family: var(--font-display);
  font-size: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  border-top: 1px solid oklch(1 0 0 / 20%);
  padding-top: 1.5rem;
  transition: all 0.4s ease;
}

.process-card:hover,
.process-card.active {
  transform: translateY(-0.5rem);
}

.process-number {
  color: var(--gold);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: block;
}

.process-card-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.process-card:hover .process-card-title,
.process-card.active .process-card-title {
  color: var(--gold);
}

.process-card-text {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
  background: black;
  overflow: hidden;
}

.categories-grid {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .categories-grid {
    flex-direction: row;
  }
}

.category-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  flex: 1;
}

@media (min-width: 768px) {
  .category-item {
    aspect-ratio: 3/4;
  }
}

/* Mobile: Parallelograms empilés verticalement */
.category-item:first-child {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: 3;
}

.category-item:nth-child(2) {
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
  margin-top: -15%;
  z-index: 2;
}

.category-item:last-child {
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  margin-top: -15%;
  z-index: 1;
}

/* Desktop: Parallelograms alignés horizontalement */
@media (min-width: 768px) {
  .category-item:first-child {
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
    z-index: 3;
  }

  .category-item:nth-child(2) {
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
    margin-top: 0;
    margin-left: -6%;
    z-index: 2;
  }

  .category-item:last-child {
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    margin-top: 0;
    margin-left: -6%;
    z-index: 1;
  }
}

/* Hover: bring to front */
.category-item:hover {
  z-index: 10;
}

.category-image {
  width: 120%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: grayscale(40%) brightness(0.9);
}

.category-item:hover .category-image {
  transform: translate(-50%, -50%) scale(1.1);
  filter: grayscale(0) brightness(1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 100%);
  transition: all 0.5s ease;
}

.category-item:hover .category-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.category-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.category-line {
  display: none;
}

.category-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all 0.5s ease;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .category-title {
    font-size: 2.25rem;
    letter-spacing: 0.2em;
  }
}

@media (min-width: 1024px) {
  .category-title {
    font-size: 3rem;
  }
}

.category-item:hover .category-title {
  opacity: 1;
  transform: translateY(0);
  color: var(--gold);
  text-shadow: 0 0 30px oklch(0.75 0.08 85 / 40%);
}

.category-label {
  font-size: 0.65rem;
  color: oklch(1 0 0 / 50%);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 300;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all 0.5s ease;
}

@media (min-width: 768px) {
  .category-label {
    font-size: 0.75rem;
  }
}

.category-item:hover .category-label {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile: Active state on scroll */
@media (max-width: 767px) {
  .category-item.active .category-image {
    transform: translate(-50%, -50%) scale(1.1);
    filter: grayscale(0) brightness(1);
  }

  .category-item.active .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
  }

  .category-item.active .category-title {
    opacity: 1;
    transform: translateY(0);
    color: var(--gold);
    text-shadow: 0 0 30px oklch(0.75 0.08 85 / 40%);
  }

  .category-item.active .category-label {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   TRUSTED BY SECTION - Infinite scroll
   ============================================ */
.trusted-section {
  position: relative;
  padding: 5rem 0 6rem;
  background: black;
  overflow: hidden;
}

.trusted-header {
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .trusted-header {
    margin-bottom: 5rem;
  }
}

.trusted-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: -0.025em;
  background: linear-gradient(to bottom right, white, oklch(1 0 0 / 60%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 640px) {
  .trusted-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .trusted-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .trusted-title {
    font-size: 4.5rem;
  }
}

.trusted-rows {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .trusted-rows {
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

.trusted-row {
  position: relative;
  overflow: hidden;
}

.trusted-row-fade-left,
.trusted-row-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 10;
  pointer-events: none;
}

@media (min-width: 768px) {

  .trusted-row-fade-left,
  .trusted-row-fade-right {
    width: 8rem;
  }
}

.trusted-row-fade-left {
  left: 0;
  background: linear-gradient(to right, black, transparent);
}

.trusted-row-fade-right {
  right: 0;
  background: linear-gradient(to left, black, transparent);
}

.trusted-scroll {
  display: flex;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trusted-scroll {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .trusted-scroll {
    gap: 4rem;
  }
}

.trusted-scroll.scroll-left {
  animation: scroll-left 15s linear infinite;
}

.trusted-scroll.scroll-right {
  animation: scroll-right 18s linear infinite;
}

.trusted-item {
  flex-shrink: 0;
}

.trusted-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid oklch(1 0 0 / 5%);
  background: oklch(1 0 0 / 2%);
  transition: border-color 0.5s ease;
}

@media (min-width: 768px) {
  .trusted-card {
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
}

.trusted-card:hover {
  border-color: oklch(0.75 0.08 85 / 20%);
}

.trusted-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(0.75 0.08 85 / 40%);
}

.trusted-name {
  font-size: 1rem;
  color: oklch(1 0 0 / 60%);
  font-weight: 300;
  white-space: nowrap;
  transition: color 0.5s ease;
}

@media (min-width: 1024px) {
  .trusted-name {
    font-size: 1.125rem;
  }
}

.trusted-card:hover .trusted-name {
  color: oklch(1 0 0 / 80%);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-66.666%);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

/* ============================================
   FOOTER - Responsive
   ============================================ */
.footer {
  border-top: 1px solid oklch(1 0 0 / 10%);
  background: linear-gradient(to bottom, oklch(0.04 0 0), black);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, oklch(0.75 0.08 85 / 30%), transparent);
}

.footer-container {
  padding: 3rem 1rem 2rem;
}

@media (min-width: 640px) {
  .footer-container {
    padding: 4rem 1.5rem 2.5rem;
  }
}

@media (min-width: 768px) {
  .footer-container {
    padding: 6rem 1.5rem 3rem;
  }
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-cta {
    margin-bottom: 3rem;
  }
}

@media (min-width: 768px) {
  .footer-cta {
    margin-bottom: 4rem;
  }
}

.footer-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-cta-wrapper {
    gap: 1.5rem;
  }
}

.footer-cta-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: oklch(0.75 0.08 85 / 60%);
  font-size: 0.65rem;
  font-weight: 300;
}

@media (min-width: 640px) {
  .footer-cta-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
  }
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

@media (min-width: 640px) {
  .footer-cta-link {
    font-size: 2rem;
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .footer-cta-link {
    font-size: 3.5rem;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-cta-link {
    font-size: 4.5rem;
  }
}

.footer-cta-text {
  background: linear-gradient(to right, white, oklch(1 0 0 / 80%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.5s ease;
}

.footer-cta-link:hover .footer-cta-text {
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
}

.footer-cta-arrow {
  color: var(--gold);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 640px) {
  .footer-cta-arrow {
    width: 2rem;
    height: 2rem;
  }
}

@media (min-width: 768px) {
  .footer-cta-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.footer-cta-link:hover .footer-cta-arrow {
  transform: translate(4px, -4px);
}

/* Footer Main */
.footer-main {
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-main {
    margin-bottom: 3rem;
  }
}

@media (min-width: 768px) {
  .footer-main {
    margin-bottom: 5rem;
  }
}

/* Footer Brand */
.footer-brand {
  text-align: center;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  display: inline-block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

@media (min-width: 640px) {
  .footer-logo {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

.footer-logo:hover {
  color: var(--gold);
}

.footer-logo-dot {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 300;
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .footer-tagline {
    font-size: 0.875rem;
  }
}

/* Footer Nav */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .footer-nav {
    gap: 3rem;
    justify-items: end;
  }
}

/* Mobile: hide Services column, keep Navigation and Social */
.footer-nav-group:nth-child(2) {
  display: none;
}

@media (min-width: 640px) {
  .footer-nav-group:nth-child(2) {
    display: flex;
  }
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .footer-nav-group {
    gap: 0.75rem;
  }
}

.footer-nav-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .footer-nav-title {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
  }
}

.footer-nav-link {
  font-size: 0.8rem;
  color: oklch(1 0 0 / 60%);
  transition: all 0.3s ease;
  font-weight: 300;
}

@media (min-width: 640px) {
  .footer-nav-link {
    font-size: 0.875rem;
  }
}

a.footer-nav-link:hover {
  color: white;
}

@media (min-width: 768px) {
  a.footer-nav-link:hover {
    padding-left: 0.5rem;
  }
}

/* Footer Social */
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: oklch(1 0 0 / 60%);
  transition: all 0.3s ease;
  font-weight: 300;
}

@media (min-width: 640px) {
  .footer-social-link {
    font-size: 0.875rem;
    justify-content: flex-start;
  }
}

.footer-social-link:hover {
  color: var(--gold);
}

.footer-social-link svg {
  transition: transform 0.3s ease;
}

.footer-social-link:hover svg {
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid oklch(1 0 0 / 8%);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    gap: 1rem;
    padding-top: 2rem;
  }
}

.footer-copyright {
  font-size: 0.7rem;
  color: oklch(1 0 0 / 40%);
  font-weight: 300;
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .footer-copyright {
    font-size: 0.75rem;
  }
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  color: oklch(1 0 0 / 40%);
  font-weight: 300;
}

@media (min-width: 640px) {
  .footer-location {
    gap: 0.5rem;
    font-size: 0.75rem;
  }
}

.footer-location svg {
  color: oklch(0.75 0.08 85 / 50%);
}

/* ============================================
   ABOUT PAGE - Responsive
   ============================================ */
.about-page {
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: black;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-page {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}

.about-hero {
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .about-hero {
    margin-bottom: 10rem;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 7fr 5fr;
  }
}

.about-title {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.85;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .about-title {
    font-size: 6rem;
  }
}

@media (min-width: 768px) {
  .about-title {
    font-size: 8rem;
  }
}

@media (min-width: 1024px) {
  .about-title {
    font-size: 12rem;
  }
}

.about-title-main {
  display: block;
  background: linear-gradient(to bottom right, white, oklch(0.75 0.08 85 / 40%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-title-highlight {
  display: block;
  color: var(--gold);
  font-style: italic;
  margin-top: -0.5rem;
}

@media (min-width: 640px) {
  .about-title-highlight {
    margin-top: -1rem;
  }
}

@media (min-width: 768px) {
  .about-title-highlight {
    margin-top: -2rem;
  }
}

.about-intro {
  padding-bottom: 1rem;
  padding-left: 1rem;
  border-left: 2px solid oklch(0.75 0.08 85 / 30%);
}

@media (min-width: 768px) {
  .about-intro {
    padding-left: 1.5rem;
  }
}

.about-intro-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: oklch(0.75 0.08 85 / 60%);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .about-intro-label {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
  }
}

.about-intro-years {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .about-intro-years {
    gap: 1rem;
  }
}

.about-intro-line {
  width: 2rem;
  height: 1px;
  background: oklch(0.75 0.08 85 / 50%);
}

@media (min-width: 768px) {
  .about-intro-line {
    width: 3rem;
  }
}

.about-intro-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: oklch(0.75 0.08 85 / 90%);
  font-weight: 700;
}

@media (min-width: 768px) {
  .about-intro-number {
    font-size: 3.75rem;
  }
}

/* About Bio Section */
.about-bio-section {
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .about-bio-section {
    margin-bottom: 10rem;
  }
}

.about-bio {
  font-size: 1.125rem;
  line-height: 1.6;
  color: oklch(1 0 0 / 80%);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .about-bio {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .about-bio {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .about-bio {
    font-size: 1.875rem;
  }
}

.about-style-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .about-style-tag {
    gap: 0.75rem;
  }
}

.about-style-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@media (min-width: 768px) {
  .about-style-dot {
    width: 8px;
    height: 8px;
  }
}

.about-style-line {
  width: 1.5rem;
  height: 1px;
  background: oklch(0.75 0.08 85 / 50%);
}

@media (min-width: 768px) {
  .about-style-line {
    width: 2rem;
  }
}

.about-style-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: oklch(0.75 0.08 85 / 60%);
}

@media (min-width: 768px) {
  .about-style-text {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
  }
}

/* Equipment Section */
.equipment-section {
  position: relative;
  border-top: 1px solid oklch(0.75 0.08 85 / 10%);
  padding-top: 4rem;
}

@media (min-width: 768px) {
  .equipment-section {
    padding-top: 5rem;
  }
}

.equipment-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.equipment-divider-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, oklch(0.75 0.08 85 / 20%), oklch(0.75 0.08 85 / 5%));
  border: 1px solid oklch(0.75 0.08 85 / 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .equipment-divider-circle {
    width: 4rem;
    height: 4rem;
  }
}

.equipment-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@media (min-width: 768px) {
  .equipment-divider-dot {
    width: 8px;
    height: 8px;
  }
}

.equipment-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .equipment-header {
    margin-bottom: 4rem;
  }
}

.equipment-label {
  color: oklch(0.75 0.08 85 / 40%);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 300;
  display: block;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .equipment-label {
    margin-bottom: 1rem;
  }
}

.equipment-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  background: linear-gradient(to bottom right, white, oklch(1 0 0 / 60%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 640px) {
  .equipment-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .equipment-title {
    font-size: 3rem;
  }
}

/* Equipment Grid - Desktop grid, Mobile horizontal scroll */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Mobile horizontal scroll for equipment */
.equipment-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1rem;
}

.equipment-scroll::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .equipment-scroll {
    display: contents;
  }
}

.equipment-card {
  padding: 1.5rem;
  background: linear-gradient(to bottom right, oklch(1 0 0 / 5%), transparent);
  border: 1px solid oklch(1 0 0 / 10%);
  border-radius: 0.75rem;
  transition: all 0.5s ease;
  overflow: hidden;
  position: relative;
  /* Mobile scroll snap */
  flex-shrink: 0;
  width: 75vw;
  scroll-snap-align: center;
}

@media (min-width: 768px) {
  .equipment-card {
    padding: 2rem;
    border-radius: 1rem;
    width: auto;
  }
}

@media (min-width: 1024px) {
  .equipment-card {
    padding: 2.5rem;
  }
}

.equipment-card:hover,
.equipment-card.active {
  border-color: oklch(0.75 0.08 85 / 50%);
  box-shadow: 0 20px 40px oklch(0.75 0.08 85 / 20%);
}

.equipment-card-hover-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent, oklch(0.75 0.08 85 / 5%));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.equipment-card:hover .equipment-card-hover-bg,
.equipment-card.active .equipment-card-hover-bg {
  opacity: 1;
}

.equipment-card-content {
  position: relative;
}

.equipment-card-line {
  width: 2.5rem;
  height: 1px;
  background: oklch(0.75 0.08 85 / 50%);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .equipment-card-line {
    width: 3rem;
    margin-bottom: 1.5rem;
  }
}

.equipment-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: oklch(0.75 0.08 85 / 80%);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .equipment-card-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .equipment-card-title {
    font-size: 1.5rem;
  }
}

.equipment-card:hover .equipment-card-title,
.equipment-card.active .equipment-card-title {
  color: var(--gold);
}

.equipment-card-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .equipment-card-items {
    gap: 0.75rem;
  }
}

.equipment-card-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: oklch(1 0 0 / 80%);
  font-size: 0.875rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .equipment-card-item {
    gap: 0.75rem;
    font-size: 1rem;
  }
}

.equipment-card-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(0.75 0.08 85 / 60%);
  flex-shrink: 0;
}

/* Equipment scroll indicators (mobile) */
.equipment-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .equipment-indicators {
    display: none;
  }
}

.equipment-indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: oklch(0.75 0.08 85 / 30%);
  transition: all 0.3s ease;
}

.equipment-indicator.active {
  background: var(--gold);
  width: 2rem;
  border-radius: 0.25rem;
}

/* ============================================
   CONTACT PAGE - Responsive
   ============================================ */
.contact-page {
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, black, oklch(0.06 0 0), black);
}

@media (min-width: 768px) {
  .contact-page {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}

.contact-hero {
  margin-bottom: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-hero {
    margin-bottom: 6rem;
  }
}

.contact-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: -0.025em;
  background: linear-gradient(to bottom right, white, oklch(1 0 0 / 60%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .contact-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 3.75rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-title {
    font-size: 5rem;
  }
}

.contact-subtitle {
  font-size: 1rem;
  color: oklch(0.75 0.08 85 / 90%);
  font-weight: 300;
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .contact-subtitle {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .contact-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .contact-subtitle {
    font-size: 1.5rem;
  }
}

.contact-sections {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 2rem 0;
  border-top: 1px solid oklch(0.75 0.08 85 / 20%);
}

@media (min-width: 768px) {
  .contact-section {
    padding: 2.5rem 0;
  }
}

.contact-section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: oklch(0.75 0.08 85 / 60%);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-section-label {
    margin-bottom: 2rem;
  }
}

.contact-instagram {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .contact-instagram {
    gap: 1.5rem;
  }
}

.contact-instagram:hover {
  opacity: 0.8;
}

.contact-instagram-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, oklch(0.75 0.08 85 / 20%), oklch(0.75 0.08 85 / 5%));
  border: 1px solid oklch(0.75 0.08 85 / 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.5s ease;
}

@media (min-width: 768px) {
  .contact-instagram-icon {
    width: 5rem;
    height: 5rem;
  }
}

.contact-instagram:hover .contact-instagram-icon {
  transform: scale(1.05);
  border-color: var(--gold);
}

.contact-instagram-handle {
  font-family: var(--font-display);
  font-size: 1.875rem;
  transition: color 0.5s ease;
}

@media (min-width: 768px) {
  .contact-instagram-handle {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-instagram-handle {
    font-size: 3rem;
  }
}

.contact-instagram:hover .contact-instagram-handle {
  color: var(--gold);
}

.contact-instagram-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.contact-location {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contact-location {
    gap: 1.5rem;
  }
}

.contact-location-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, oklch(0.75 0.08 85 / 10%), oklch(0.75 0.08 85 / 5%));
  border: 1px solid oklch(0.75 0.08 85 / 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: oklch(0.75 0.08 85 / 80%);
}

@media (min-width: 768px) {
  .contact-location-icon {
    width: 4rem;
    height: 4rem;
  }
}

.contact-location-text {
  font-size: 1.25rem;
  color: oklch(1 0 0 / 90%);
  font-weight: 300;
}

@media (min-width: 768px) {
  .contact-location-text {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-location-text {
    font-size: 1.875rem;
  }
}

.contact-location-subtext {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.contact-availability {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-availability {
    gap: 3rem;
  }
}

/* ============================================
   PROJECTS PAGE - Responsive
   ============================================ */
.projects-page {
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, black, oklch(0.06 0 0), black);
}

@media (min-width: 768px) {
  .projects-page {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}

.projects-hero {
  margin-bottom: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .projects-hero {
    margin-bottom: 5rem;
  }
}

.projects-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: -0.025em;
  background: linear-gradient(to bottom right, white, oklch(1 0 0 / 60%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .projects-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .projects-title {
    font-size: 3.75rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .projects-title {
    font-size: 5rem;
  }
}

.projects-subtitle {
  color: oklch(1 0 0 / 80%);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .projects-subtitle {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .projects-subtitle {
    font-size: 1.125rem;
  }
}

.projects-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  padding: 0 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .projects-filter {
    gap: 0.75rem;
    margin-bottom: 6rem;
  }
}

.projects-filter-label {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  color: oklch(0.75 0.08 85 / 40%);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .projects-filter-label {
    top: -3rem;
  }
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid oklch(1 0 0 / 10%);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: white;
  background: oklch(1 0 0 / 5%);
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
  .filter-btn {
    padding: 0.5rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .filter-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

.filter-btn:hover {
  border-color: oklch(0.75 0.08 85 / 30%);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: black;
  box-shadow: 0 10px 20px oklch(0.75 0.08 85 / 20%);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 1rem;
}

@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
  }
}

.project-card {
  display: block;
  cursor: pointer;
  transition: all 0.7s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .project-card-image-wrapper {
    border-radius: 1rem;
    margin-bottom: 1.5rem;
  }
}

.project-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
  filter: grayscale(30%);
}

.project-card:hover .project-card-image {
  transform: scale(1.1);
  filter: grayscale(0);
}

.project-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.project-card:hover .project-card-image-overlay {
  opacity: 0.4;
}

.project-card-content {
  padding: 0 0.25rem;
}

@media (min-width: 768px) {
  .project-card-content {
    padding: 0 0.5rem;
  }
}

.project-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .project-card-header {
    gap: 1rem;
    margin-bottom: 0.75rem;
  }
}

.project-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
  transition: color 0.5s ease;
}

@media (min-width: 640px) {
  .project-card-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .project-card-title {
    font-size: 1.875rem;
  }
}

.project-card:hover .project-card-title {
  color: var(--gold);
}

.project-card-category {
  font-size: 0.625rem;
  color: oklch(0.75 0.08 85 / 60%);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
  margin-top: 0.125rem;
  transition: color 0.5s ease;
}

@media (min-width: 768px) {
  .project-card-category {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-top: 0.25rem;
  }
}

.project-card:hover .project-card-category {
  color: var(--gold);
}

.project-card-meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: oklch(0.75 0.08 85 / 60%);
  font-weight: 300;
}

@media (min-width: 768px) {
  .project-card-meta {
    gap: 0.5rem;
    font-size: 0.875rem;
  }
}

.project-card-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: oklch(0.75 0.08 85 / 40%);
}

/* ============================================
   SERVICES PAGE - Responsive
   ============================================ */
.services-page {
  min-height: 100vh;
  padding-top: 6rem;
  background: linear-gradient(to bottom, black, oklch(0.04 0 0), black);
}

@media (min-width: 768px) {
  .services-page {
    padding-top: 8rem;
  }
}

/* Services Hero */
.services-hero {
  margin-bottom: 4rem;
  text-align: center;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .services-hero {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
  }
}

.services-label {
  color: oklch(0.75 0.08 85 / 60%);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 300;
  display: block;
  margin-bottom: 1rem;
}

.services-title {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .services-title {
    font-size: 4rem;
  }
}

@media (min-width: 768px) {
  .services-title {
    font-size: 5rem;
  }
}

@media (min-width: 1024px) {
  .services-title {
    font-size: 6rem;
  }
}

.services-title-main {
  background: linear-gradient(to bottom right, white, oklch(1 0 0 / 60%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-subtitle {
  color: oklch(1 0 0 / 60%);
  font-size: 1rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-subtitle {
    font-size: 1.125rem;
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Service Card */
.service-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, oklch(1 0 0 / 4%), oklch(1 0 0 / 1%));
  border: 1px solid oklch(1 0 0 / 8%);
  border-radius: 1.25rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .service-card {
    padding: 3rem;
  }
}

/* Active state for scroll-based highlight (all screens) */
.service-card.active {
  border-color: oklch(0.75 0.08 85 / 40%);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px oklch(0.75 0.08 85 / 15%);
}

/* Hover only on desktop */
@media (min-width: 768px) {
  .service-card:hover {
    border-color: oklch(0.75 0.08 85 / 40%);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px oklch(0.75 0.08 85 / 15%);
  }
}

.service-card-inner {
  position: relative;
  z-index: 1;
}

.service-card-hover-effect {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, oklch(0.75 0.08 85 / 10%), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Active state for scroll-based highlight (all screens) */
.service-card.active .service-card-hover-effect {
  opacity: 1;
}

/* Hover only on desktop */
@media (min-width: 768px) {
  .service-card:hover .service-card-hover-effect {
    opacity: 1;
  }
}

.service-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: oklch(0.75 0.08 85 / 30%);
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .service-card-number {
    top: 2rem;
    right: 2rem;
  }
}

.service-card-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, oklch(0.75 0.08 85 / 20%), oklch(0.75 0.08 85 / 5%));
  border: 1px solid oklch(0.75 0.08 85 / 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

@media (min-width: 768px) {
  .service-card-icon-wrapper {
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 2rem;
  }
}

/* Active state for scroll-based highlight (all screens) */
.service-card.active .service-card-icon-wrapper {
  background: linear-gradient(135deg, oklch(0.75 0.08 85 / 30%), oklch(0.75 0.08 85 / 10%));
  border-color: oklch(0.75 0.08 85 / 40%);
  transform: scale(1.05);
}

/* Hover only on desktop */
@media (min-width: 768px) {
  .service-card:hover .service-card-icon-wrapper {
    background: linear-gradient(135deg, oklch(0.75 0.08 85 / 30%), oklch(0.75 0.08 85 / 10%));
    border-color: oklch(0.75 0.08 85 / 40%);
    transform: scale(1.05);
  }
}

.service-card-icon {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .service-card-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .service-card-title {
    font-size: 1.75rem;
  }
}

/* Active state for scroll-based highlight (all screens) */
.service-card.active .service-card-title {
  color: var(--gold);
}

/* Hover only on desktop */
@media (min-width: 768px) {
  .service-card:hover .service-card-title {
    color: var(--gold);
  }
}

.service-card-text {
  color: oklch(1 0 0 / 60%);
  line-height: 1.7;
  font-weight: 300;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .service-card-text {
    font-size: 1rem;
  }
}

/* Service Tags */
.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  padding: 0.375rem 0.75rem;
  background: oklch(1 0 0 / 5%);
  border: 1px solid oklch(1 0 0 / 10%);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: oklch(1 0 0 / 50%);
  font-weight: 300;
  transition: all 0.3s ease;
}

/* Active state for scroll-based highlight (all screens) */
.service-card.active .service-tag {
  border-color: oklch(0.75 0.08 85 / 30%);
  color: oklch(0.75 0.08 85 / 80%);
}

/* Hover only on desktop */
@media (min-width: 768px) {
  .service-card:hover .service-tag {
    border-color: oklch(0.75 0.08 85 / 30%);
    color: oklch(0.75 0.08 85 / 80%);
  }
}

/* Services Process Section */
.services-process {
  padding: 5rem 0;
  background: linear-gradient(to bottom, oklch(0.04 0 0), oklch(0.02 0 0));
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .services-process {
    padding: 7rem 0;
    margin-top: 6rem;
  }
}

.services-process-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .services-process-header {
    margin-bottom: 4rem;
  }
}

.services-process-label {
  color: oklch(0.75 0.08 85 / 50%);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  font-weight: 300;
  display: block;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .services-process-label {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}

.services-process-title {
  font-size: 1.75rem;
  background: linear-gradient(to bottom right, white, oklch(1 0 0 / 60%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 768px) {
  .services-process-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .services-process-title {
    font-size: 2.75rem;
  }
}

/* Process Timeline */
.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-timeline {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .process-timeline {
    flex-direction: row;
    gap: 1.5rem;
    max-width: none;
  }
}

/* Timeline Line */
.process-timeline-line {
  position: absolute;
  left: 1.5rem;
  top: 2.5rem;
  bottom: 2.5rem;
  width: 2px;
  background: linear-gradient(to bottom, oklch(0.75 0.08 85 / 40%), oklch(0.75 0.08 85 / 10%));
}

@media (min-width: 1024px) {
  .process-timeline-line {
    left: 0;
    right: 0;
    top: 1.5rem;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(to right, oklch(0.75 0.08 85 / 10%), oklch(0.75 0.08 85 / 30%), oklch(0.75 0.08 85 / 30%), oklch(0.75 0.08 85 / 10%));
  }
}

/* Process Step */
.process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-left: 0.25rem;
}

@media (min-width: 1024px) {
  .process-step {
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding-left: 0;
    gap: 1.25rem;
  }
}

/* Step Marker */
.process-step-marker {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, oklch(0.08 0 0), oklch(0.04 0 0));
  border: 2px solid oklch(0.75 0.08 85 / 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active state for scroll-based highlight (all screens) */
.process-step.active .process-step-marker {
  border-color: var(--gold);
  background: oklch(0.08 0.02 85);
  box-shadow: 0 0 25px oklch(0.75 0.08 85 / 30%);
  transform: scale(1.1);
}

/* Hover only on desktop */
@media (min-width: 1024px) {
  .process-step:hover .process-step-marker {
    border-color: var(--gold);
    background: oklch(0.08 0.02 85);
    box-shadow: 0 0 25px oklch(0.75 0.08 85 / 30%);
    transform: scale(1.1);
  }
}

.process-step-number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: oklch(0.75 0.08 85 / 60%);
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Active state for scroll-based highlight (all screens) */
.process-step.active .process-step-number {
  color: var(--gold);
}

/* Hover only on desktop */
@media (min-width: 1024px) {
  .process-step:hover .process-step-number {
    color: var(--gold);
  }
}

/* Step Card */
.process-step-card {
  flex: 1;
  padding: 1.25rem;
  background: linear-gradient(135deg, oklch(1 0 0 / 4%), oklch(1 0 0 / 1%));
  border: 1px solid oklch(1 0 0 / 8%);
  border-radius: 1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .process-step-card {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .process-step-card {
    text-align: center;
    padding: 1.5rem 1.25rem;
  }
}

/* Active state for scroll-based highlight (all screens) */
.process-step.active .process-step-card {
  border-color: oklch(0.75 0.08 85 / 30%);
  background: linear-gradient(135deg, oklch(0.75 0.08 85 / 8%), oklch(1 0 0 / 2%));
  transform: translateY(-4px);
  box-shadow: 0 15px 30px oklch(0.75 0.08 85 / 10%);
}

/* Hover only on desktop */
@media (min-width: 1024px) {
  .process-step:hover .process-step-card {
    border-color: oklch(0.75 0.08 85 / 30%);
    background: linear-gradient(135deg, oklch(0.75 0.08 85 / 8%), oklch(1 0 0 / 2%));
    transform: translateY(-6px);
    box-shadow: 0 15px 30px oklch(0.75 0.08 85 / 10%);
  }

  .process-step.active .process-step-card {
    transform: translateY(-6px);
  }
}

/* Step Icon */
.process-step-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, oklch(0.75 0.08 85 / 15%), oklch(0.75 0.08 85 / 5%));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
  transition: all 0.5s ease;
}

@media (min-width: 1024px) {
  .process-step-icon {
    margin: 0 auto 1rem;
  }
}

/* Active state for scroll-based highlight (all screens) */
.process-step.active .process-step-icon {
  background: linear-gradient(135deg, oklch(0.75 0.08 85 / 25%), oklch(0.75 0.08 85 / 10%));
  transform: scale(1.05);
}

/* Hover only on desktop */
@media (min-width: 1024px) {
  .process-step:hover .process-step-icon {
    background: linear-gradient(135deg, oklch(0.75 0.08 85 / 25%), oklch(0.75 0.08 85 / 10%));
    transform: scale(1.05);
  }
}

.process-step-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Step Title */
.process-step-title {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .process-step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}

/* Active state for scroll-based highlight (all screens) */
.process-step.active .process-step-title {
  color: var(--gold);
}

/* Hover only on desktop */
@media (min-width: 1024px) {
  .process-step:hover .process-step-title {
    color: var(--gold);
  }
}

/* Step Text */
.process-step-text {
  font-size: 0.8rem;
  color: oklch(1 0 0 / 50%);
  font-weight: 300;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .process-step-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

/* Services CTA */
.services-cta {
  padding: 5rem 0 6rem;
  background: linear-gradient(to bottom, oklch(0.03 0 0), black);
}

@media (min-width: 768px) {
  .services-cta {
    padding: 6rem 0 8rem;
  }
}

.services-cta-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.services-cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(to bottom right, white, oklch(1 0 0 / 70%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 768px) {
  .services-cta-title {
    font-size: 2.5rem;
  }
}

.services-cta-text {
  color: oklch(1 0 0 / 60%);
  font-weight: 300;
  margin-bottom: 2rem;
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: black;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 9999px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px oklch(0.75 0.08 85 / 25%);
}

.services-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px oklch(0.75 0.08 85 / 35%);
}

.services-cta-btn svg {
  transition: transform 0.3s ease;
}

.services-cta-btn:hover svg {
  transform: translate(3px, -3px);
}

/* ============================================
   Animations
   ============================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}