/*
Theme Name: Black Sol Invest Group
Theme URI: https://blacksolinvest.com
Author: Black Sol Invest Group
Author URI: https://blacksolinvest.com
Description: Elegancki motyw dla firmy inwestycyjnej specjalizującej się w projektach flippingowych na Costa del Sol. Custom theme with Projects CPT and full admin editability.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blacksol
Tags: custom-logo, custom-menu, featured-images, theme-options, translation-ready

Black Sol Invest Group - Professional Real Estate Flipping on Costa del Sol, Spain
*/

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  /* Primary Colors - Warm blacks for luxury feel */
  --color-black: #080808;
  --color-black-light: #111111;
  --color-black-card: #161616;
  --color-black-soft: #1c1c1c;
  --color-black-warm: #0d0b09;

  /* Gold Accent - Dimensional luxury gold */
  --color-gold: #c9a962;
  --color-gold-hover: #dcc07a;
  --color-gold-dark: #a88b4a;
  --color-gold-light: rgba(201, 169, 98, 0.12);
  --color-gold-glow: rgba(201, 169, 98, 0.4);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #c9a962 50%, #e8d5a3 100%);
  --gradient-gold-subtle: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(232, 213, 163, 0.05) 100%);

  /* Text Colors */
  --color-text: #f8f7f4;
  --color-text-muted: #b8b8b8;
  --color-text-dim: #8a8a8a;
  --color-text-dark: #1a1a1a;

  /* Backgrounds */
  --color-bg-dark: #080808;
  --color-bg-card: #111111;
  --color-bg-overlay: rgba(8, 8, 8, 0.92);
  --color-bg-glass: rgba(22, 22, 22, 0.8);

  /* Borders & Utilities */
  --color-border: rgba(201, 169, 98, 0.25);
  --color-border-light: rgba(255, 255, 255, 0.06);
  --color-border-gold: rgba(201, 169, 98, 0.4);

  /* Typography - Premium font stack */
  --font-heading: 'Playfair Display', 'Libre Baskerville', Georgia, serif;
  --font-body: 'DM Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', 'Libre Baskerville', Georgia, serif;

  /* Font Sizes - Dramatic scale for luxury */
  --text-xs: 0.7rem;
  --text-sm: 0.8125rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.3125rem;
  --text-2xl: 1.625rem;
  --text-3xl: 2.125rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;
  --text-7xl: 6rem;
  --text-8xl: 8rem;

  /* Spacing - Generous luxury spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;
  --space-5xl: 9rem;
  --space-6xl: 12rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 900px;
  --header-height: 100px;

  /* Transitions - Refined easing */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-elegant: 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows - Luxurious depth */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 8px 32px rgba(201, 169, 98, 0.35);
  --shadow-gold-lg: 0 16px 48px rgba(201, 169, 98, 0.4);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.3);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
}

/* ==========================================================================
   Premium Effects & Textures
   ========================================================================== */

/* Noise texture overlay */
.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* Gold shimmer animation */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.gold-shimmer {
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    #f4e4b5 25%,
    var(--color-gold) 50%,
    #f4e4b5 75%,
    var(--color-gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Reveal animations */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes revealLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(201, 169, 98, 0); }
}

/* Animated gradient border */
@keyframes borderGlow {
  0%, 100% { border-color: rgba(201, 169, 98, 0.3); }
  50% { border-color: rgba(201, 169, 98, 0.6); }
}

/* Stagger animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--color-text);
  background-color: var(--color-bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle grain texture on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(var(--text-5xl), 7vw, var(--text-8xl));
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.0;
}

h2 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h3 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  letter-spacing: -0.01em;
}

h4 {
  font-size: var(--text-2xl);
  letter-spacing: -0.01em;
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-md);
}

.text-gold {
  color: var(--color-gold);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.section-label::before {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  animation: revealLine 1s var(--transition-elegant) forwards;
  transform-origin: left;
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-5xl) 0;
}

.section-dark {
  background-color: var(--color-black);
}

.section-darker {
  background-color: var(--color-black-light);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-black);
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-gold);
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-border-gold);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-text);
  color: var(--color-black);
  border: 1px solid var(--color-text);
}

.btn-white:hover {
  background: transparent;
  color: var(--color-text);
  transform: translateY(-2px);
}

.btn-lg {
  padding: var(--space-lg) var(--space-3xl);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
}

.btn i {
  font-size: 0.85em;
  transition: transform var(--transition-base);
}

.btn:hover i {
  transform: translateX(3px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), background 400ms cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 400ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

/* WordPress Admin Bar Support */
body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .mobile-menu {
  top: calc(var(--header-height) + 32px);
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .mobile-menu {
    top: calc(var(--header-height) + 46px);
  }
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-3xl);
  right: var(--space-3xl);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header.scrolled::after {
  opacity: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo img {
  height: auto;
  width: 140px;
  background: none;
  transition: transform var(--transition-base);
}

@media (min-width: 768px) {
  .site-logo img {
    width: 180px;
  }
}

.site-logo:hover img {
  transform: scale(1.02);
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: block;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
}

.nav-menu a {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding: var(--space-sm) 0;
  transition: color var(--transition-base);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: translateX(-50%) scale(1);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: block;
  }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-sm);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-black);
  padding: var(--space-2xl);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mobile-nav-menu a {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav-menu a:hover {
  color: var(--color-gold);
}

/* ==========================================================================
   Hero Section - Cinematic Luxury
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.7) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(8, 8, 8, 0.3) 0%, rgba(8, 8, 8, 0.5) 40%, rgba(8, 8, 8, 0.95) 100%);
}

/* Gold accent glow */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  padding: var(--space-2xl);
}

.hero-label {
  font-family: var(--font-accent);
  font-size: var(--text-base);
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
  animation: revealUp 1s ease-out 0.2s both;
}

.hero-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
  font-weight: 400;
  margin-bottom: var(--space-2xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: revealUp 1s ease-out 0.4s both;
}

.hero-title .highlight {
  color: var(--color-gold);
  display: block;
  margin-top: var(--space-sm);
}

.hero-description {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3xl);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: revealUp 1s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  animation: revealUp 1s ease-out 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-text-dim);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: revealUp 1s ease-out 1.2s both;
  text-align: center;
}

.hero-scroll i {
  animation: float 2.5s ease-in-out infinite;
}

/* Decorative corner accents */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 169, 98, 0.2);
  z-index: 2;
  pointer-events: none;
}

.hero::before {
  top: var(--space-3xl);
  left: var(--space-3xl);
  border-right: none;
  border-bottom: none;
}

.hero::after {
  bottom: var(--space-3xl);
  right: var(--space-3xl);
  border-left: none;
  border-top: none;
}

/* ==========================================================================
   Strategy Section
   ========================================================================== */

.strategy-section {
  background: var(--color-black-light);
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .strategy-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.strategy-content h2 {
  margin-bottom: var(--space-xl);
}

.strategy-content p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.8;
}

.strategy-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.stat-item {
  padding: var(--space-xl);
  background: transparent;
  border-radius: 0;
  border: 1px solid var(--color-border-light);
  border-left: 2px solid var(--color-gold);
  transition: all var(--transition-base);
}

.stat-item:hover {
  border-left-width: 4px;
  background: var(--color-black-card);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

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

.strategy-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.strategy-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 1;
}

.strategy-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ==========================================================================
   Process Section
   ========================================================================== */

.process-section {
  background: var(--color-black);
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-4xl);
}

.process-header h2 {
  margin-bottom: var(--space-lg);
}

.process-header p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  background: var(--color-black-light);
  padding: var(--space-3xl) var(--space-2xl);
  border-radius: 0;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-elegant);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-elegant);
}

.process-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.process-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover::after {
  opacity: 1;
}

.process-number {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: 400;
  color: var(--color-gold);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--space-lg);
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
}

.process-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border-gold);
  border-radius: 0;
  color: var(--color-gold);
  font-size: var(--text-xl);
  margin-bottom: var(--space-xl);
  transition: all var(--transition-base);
}

.process-card:hover .process-icon {
  background: var(--color-gold);
  color: var(--color-black);
}

.process-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.process-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Projects Section
   ========================================================================== */

.projects-section {
  background: var(--color-black-light);
}

.projects-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.projects-header-content h2 {
  margin-bottom: var(--space-sm);
}

.projects-header-content p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Project Card - Premium Gallery Style */
.project-item {
  display: flex;
}

.project-card {
  background: var(--color-black-card);
  border-radius: 0;
  overflow: hidden;
  transition: all var(--transition-elegant);
  border: 1px solid var(--color-border-light);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.project-card .project-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}

.project-card .project-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card .project-title {
  flex: 1;
}

.project-card .project-meta {
  margin-top: auto;
}

.project-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-elegant);
  z-index: 10;
}

.project-card:hover {
  transform: translateY(-12px);
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-gold-lg);
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.project-card:hover .project-image::after {
  opacity: 1;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-elegant);
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-status {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

.status-in_progress {
  background: rgba(201, 169, 98, 0.9);
  color: var(--color-black);
}

.status-completed {
  background: rgba(34, 197, 94, 0.9);
  color: var(--color-black);
}

.status-for_sale {
  background: rgba(59, 130, 246, 0.9);
  color: white;
}

.project-content {
  padding: var(--space-xl);
}

.project-location {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.project-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-value {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
}

.about-image-stat {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.about-image-stat .number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-gold);
}

.about-image-stat .text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.about-content h2 {
  margin-bottom: var(--space-xl);
}

.about-content p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.about-feature i {
  color: var(--color-gold);
  font-size: var(--text-lg);
}

.about-feature span {
  font-size: var(--text-sm);
  color: var(--color-text);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  background: var(--gradient-gold);
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--color-black);
  margin-bottom: var(--space-lg);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
}

.cta-content p {
  color: var(--color-black);
  opacity: 0.75;
  font-size: var(--text-lg);
  margin-bottom: var(--space-3xl);
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.cta-section .btn-primary {
  background: var(--color-black);
  color: var(--color-gold);
  border-color: var(--color-black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary:hover {
  background: transparent;
  color: var(--color-black);
  box-shadow: none;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
  background: var(--color-black-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  margin-bottom: var(--space-lg);
}

.contact-info > p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2xl);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border-gold);
  border-radius: 0;
  color: var(--color-gold);
  font-size: var(--text-xl);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.contact-method:hover .contact-icon {
  background: var(--color-gold);
  color: var(--color-black);
}

.contact-method-content .label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.contact-method-content a,
.contact-method-content span {
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 500;
}

.contact-method-content a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.social-link {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border-light);
  border-radius: 0;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.social-link i {
  position: relative;
  z-index: 1;
}

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-black);
}

.social-link:hover::before {
  transform: translateY(0);
}

/* Contact Form - Premium styling */
.contact-form-wrapper {
  background: var(--color-black-card);
  padding: var(--space-3xl);
  border-radius: 0;
  border: 1px solid var(--color-border-light);
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-top: 1px solid var(--color-gold);
  border-left: 1px solid var(--color-gold);
  pointer-events: none;
}

.contact-form-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-bottom: 1px solid var(--color-gold);
  border-right: 1px solid var(--color-gold);
  pointer-events: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  padding: var(--space-lg) var(--space-md);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border-light);
  border-radius: 0;
  color: var(--color-text);
  transition: all var(--transition-base);
  font-size: var(--text-base);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(201, 169, 98, 0.03);
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-black);
  padding: var(--space-5xl) 0 var(--space-xl);
  border-top: 1px solid var(--color-border-light);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: var(--gradient-gold);
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  margin-bottom: var(--space-lg);
}

.footer-logo img {
  height: auto;
  width: 180px;
  background: none;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.footer-column h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  color: var(--color-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.footer-contact-item i {
  color: var(--color-gold);
  width: 20px;
}

.footer-contact-item a {
  color: var(--color-text-muted);
}

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

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border-light);
}

.footer-copyright {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

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

/* ==========================================================================
   Single Project Page
   ========================================================================== */

.project-hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.project-hero-bg {
  position: absolute;
  inset: 0;
}

.project-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroZoom 15s ease-out forwards;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.6) 0%, transparent 50%),
    linear-gradient(to top, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.4) 50%, rgba(8, 8, 8, 0.2) 100%);
}

.project-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-3xl);
}

.project-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  margin-bottom: var(--space-xl);
}

.project-breadcrumb a {
  color: var(--color-text-muted);
}

.project-breadcrumb a:hover {
  color: var(--color-gold);
}

.project-breadcrumb span {
  color: var(--color-text-muted);
}

.project-breadcrumb .current {
  color: var(--color-gold);
}

.project-hero-location {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

.project-hero h1 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  letter-spacing: -0.02em;
}

.project-hero-status {
  position: static;
  display: inline-block;
  margin-top: var(--space-lg);
}

/* --- Project Stats Bar --- */

.project-stats-bar {
  background: var(--color-black-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: var(--space-xl) 0;
}

.project-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: flex-start;
}

.project-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-right: var(--space-xl);
  border-right: 1px solid var(--color-border-light);
}

.project-stat:last-child {
  border-right: none;
  padding-right: 0;
}

.project-stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.project-stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
}

.project-stat-highlight .project-stat-value {
  color: #22c55e;
}

@media (max-width: 640px) {
  .project-stats-row {
    gap: var(--space-lg);
  }

  .project-stat {
    flex: 1;
    min-width: calc(50% - var(--space-lg));
    padding-right: 0;
    border-right: none;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
  }

  .project-stat:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* --- Project Content Layout --- */

.project-single-content {
  padding: var(--space-4xl) 0;
  background: var(--color-black);
}

.project-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

@media (min-width: 1024px) {
  .project-layout {
    grid-template-columns: 5fr 2fr;
    gap: var(--space-4xl);
  }
}

.project-main h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
}

.project-description {
  margin-bottom: var(--space-3xl);
}

.project-description p,
.project-main p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
}

.project-description p:last-child {
  margin-bottom: 0;
}

.project-description ul,
.project-description ol {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.project-description li {
  margin-bottom: var(--space-sm);
}

.project-description h3,
.project-description h4 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.project-description blockquote {
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-xl);
  margin: var(--space-2xl) 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-text);
}

.project-description a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.project-description a:hover {
  color: var(--color-gold-hover);
}

/* --- Project Sidebar --- */

.project-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
}

.project-details-card {
  background: var(--color-black-light);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: 0;
}

.project-details-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.detail-label i {
  color: var(--color-gold);
  width: 20px;
}

.detail-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.project-sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.project-sidebar-btn {
  width: 100%;
}

/* --- Project Navigation (Prev/Next) --- */

.project-nav-section {
  background: var(--color-black-light);
  border-top: 1px solid var(--color-border-light);
}

.project-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.project-nav-item {
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition-base);
  color: var(--color-text);
  min-height: 100px;
}

a.project-nav-item:hover {
  background: var(--color-black-card);
  color: var(--color-text);
}

.project-nav-prev {
  border-right: 1px solid var(--color-border-light);
}

.project-nav-next {
  text-align: right;
  align-items: flex-end;
}

.project-nav-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

.project-nav-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.3;
}

a.project-nav-item:hover .project-nav-title {
  color: var(--color-gold);
}

@media (max-width: 640px) {
  .project-nav {
    grid-template-columns: 1fr;
  }

  .project-nav-prev {
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
  }

  .project-nav-next {
    text-align: left;
    align-items: flex-start;
  }

  .project-nav-item {
    padding: var(--space-xl) var(--space-md);
  }
}

@media (max-width: 768px) {
  .project-hero {
    height: 60vh;
    min-height: 400px;
  }
}

/* Gallery */
.project-gallery {
  margin-top: var(--space-3xl);
}

.project-gallery h2 {
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.gallery-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.project-gallery-before h2 .gallery-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.7;
}

.project-gallery-after h2 .gallery-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

/* ==========================================================================
   Before/After Comparison Slider
   ========================================================================== */

.before-after-section {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.before-after-section h2 {
  margin-bottom: var(--space-sm);
}

.before-after-section .section-description {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-xl);
}

.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.before-after-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  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;
}

.before-image {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.after-image {
  z-index: 0;
}

.image-label {
  position: absolute;
  bottom: var(--space-lg);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  z-index: 3;
}

.before-label {
  left: var(--space-lg);
  background: rgba(201, 169, 98, 0.95);
  color: var(--color-black);
}

.after-label {
  right: var(--space-lg);
  background: rgba(34, 197, 94, 0.95);
  color: var(--color-black);
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-gold);
  box-shadow: 0 0 10px rgba(201, 169, 98, 0.5);
}

.slider-button {
  position: relative;
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-size: var(--text-base);
  box-shadow: var(--shadow-gold);
  pointer-events: auto;
  cursor: ew-resize;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.slider-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-gold-lg);
}

.before-after-slider:active .slider-button {
  transform: scale(1.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slider-button {
    width: 40px;
    height: 40px;
    font-size: var(--text-sm);
  }

  .image-label {
    font-size: 10px;
    padding: var(--space-xs) var(--space-sm);
  }
}

/* ==========================================================================
   Project Profit Card
   ========================================================================== */

.project-profit-card {
  margin-top: var(--space-lg);
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
}

.profit-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.profit-header i {
  color: #22c55e;
}

.profit-amount {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 500;
  color: #22c55e;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.profit-percent {
  font-size: var(--text-lg);
  font-weight: 600;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Projects Archive
   ========================================================================== */

.archive-hero {
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  background: var(--color-black);
  text-align: center;
}

.archive-hero h1 {
  margin-bottom: var(--space-lg);
}

.archive-hero p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

.archive-content {
  padding: var(--space-4xl) 0;
  background: var(--color-black-light);
}

/* Filter */
.projects-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.filter-btn {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* No Filter Results */
.no-filter-results {
  padding: var(--space-4xl) 0;
}

.no-filter-results-inner {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: var(--space-3xl);
  border: 1px solid var(--color-border-light);
  background: var(--color-black-card);
}

.no-filter-results-inner i {
  font-size: var(--text-4xl);
  color: var(--color-gold);
  opacity: 0.3;
  margin-bottom: var(--space-xl);
  display: block;
}

.no-filter-results-inner h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.no-filter-results-inner p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-xl);
}

.no-filter-results-inner .btn {
  margin-top: var(--space-sm);
}

/* ==========================================================================
   About Page
   ========================================================================== */

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-6xl)) 0 var(--space-5xl);
  background: var(--color-black);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: var(--space-lg);
}

.page-hero p {
  color: var(--color-text-muted);
  font-size: var(--text-xl);
  max-width: 700px;
  margin: 0 auto;
}

.about-intro {
  padding: var(--space-5xl) 0;
  background: var(--color-black-light);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-intro-content h2 {
  margin-bottom: var(--space-xl);
}

.about-intro-content p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.8;
}

.locations-section {
  padding: var(--space-5xl) 0;
  background: var(--color-black);
}

.locations-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.location-card {
  text-align: center;
  padding: var(--space-3xl) var(--space-2xl);
  background: var(--color-black-light);
  border-radius: 0;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-elegant);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--transition-elegant);
}

.location-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.location-card:hover::before {
  transform: scaleX(1);
}

.location-card i {
  font-size: var(--text-4xl);
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
  display: block;
}

.location-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.location-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Values Section */
.values-section {
  padding: var(--space-5xl) 0;
  background: var(--color-black-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border-gold);
  border-radius: 50%;
  color: var(--color-gold);
  font-size: var(--text-2xl);
  margin: 0 auto var(--space-xl);
  transition: all var(--transition-base);
}

.value-card:hover .value-icon {
  background: var(--color-gold);
  color: var(--color-black);
  transform: scale(1.05);
}

.value-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.value-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl);
  position: relative;
}

.error-404::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.error-content {
  position: relative;
  z-index: 1;
}

.error-content h1 {
  font-size: var(--text-8xl);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  line-height: 1;
}

.error-content h2 {
  margin-bottom: var(--space-lg);
  font-size: var(--text-3xl);
}

.error-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-3xl);
  font-size: var(--text-lg);
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.mb-0 {
  margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Lightbox - Cinematic Gallery View */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 8, 8, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-elegant);
  backdrop-filter: blur(20px);
}

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

.lightbox-close {
  position: absolute;
  top: var(--space-2xl);
  right: var(--space-2xl);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border-light);
  border-radius: 0;
  color: var(--color-text);
  font-size: var(--text-xl);
  cursor: pointer;
  transition: all var(--transition-base);
}

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

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: var(--shadow-xl);
}

/* Gallery item hover enhancement */
.gallery-item {
  position: relative;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
  pointer-events: none;
}

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  color: var(--color-gold);
  font-size: var(--text-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
}

/* ==========================================================================
   Premium Final Touches
   ========================================================================== */

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--color-black-soft);
  border: 2px solid var(--color-black);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-black-soft) var(--color-black);
}

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

::-moz-selection {
  background: var(--color-gold);
  color: var(--color-black);
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

/* Smooth page load */
.page-loaded .hero-content,
.page-loaded .process-card,
.page-loaded .project-card,
.page-loaded .stat-item {
  opacity: 1;
  transform: translateY(0);
}

/* Image loading placeholder */
img {
  background: var(--color-black-card);
}

/* Links with gold underline effect */
.text-link {
  position: relative;
  color: var(--color-text);
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Decorative divider */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gradient-gold);
  margin: var(--space-2xl) auto;
}

/* Gold text gradient */
.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card glass effect */
.glass-card {
  background: var(--color-bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border-light);
}

/* Responsive typography adjustments */
@media (max-width: 768px) {
  :root {
    --text-7xl: 3.5rem;
    --text-8xl: 4.5rem;
    --space-5xl: 6rem;
    --space-6xl: 8rem;
  }

  .hero::before,
  .hero::after {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --text-6xl: 2.5rem;
    --text-7xl: 3rem;
    --text-8xl: 3.5rem;
    --space-4xl: 4rem;
    --space-5xl: 5rem;
  }
}

/* ==========================================================================
   About Page - Premium Cinematic Design
   ========================================================================== */

/* --- About Hero Section --- */

.about-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.85) 0%, rgba(8, 8, 8, 0.4) 40%, rgba(8, 8, 8, 0.3) 60%),
    linear-gradient(to bottom, rgba(8, 8, 8, 0.2) 0%, rgba(8, 8, 8, 0.6) 60%, rgba(8, 8, 8, 0.98) 100%);
  z-index: 1;
}

/* Subtle gold atmospheric glow */
.about-hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 30%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.about-hero-inner {
  max-width: 800px;
  animation: revealUp 1s ease-out 0.2s both;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-left: 60px;
}

.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 44px;
  height: 1px;
  background: var(--color-gold);
  transform: translateY(-50%);
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
}

.about-hero-title em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-gold);
  font-weight: 400;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gradient-gold);
  margin-bottom: var(--space-xl);
  animation: revealLine 1.2s ease-out 0.6s both;
  transform-origin: left;
}

.about-hero-subtitle {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-xl));
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 0;
}

/* Hero Stats Bar */
.about-hero-stats {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-3xl);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border-light);
  animation: revealUp 1s ease-out 0.8s both;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.stat-block .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-block .stat-text {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--color-border-light), transparent);
}

@media (max-width: 768px) {
  .stats-row {
    flex-wrap: wrap;
    gap: var(--space-xl);
  }

  .stat-divider {
    display: none;
  }

  .stat-block {
    flex: 1;
    min-width: 120px;
  }
}

/* --- Philosophy Section --- */

.philosophy-section {
  padding: var(--space-5xl) 0;
  background: var(--color-black-light);
  position: relative;
  overflow: hidden;
}

/* Decorative corner accent */
.philosophy-section::before {
  content: '';
  position: absolute;
  top: var(--space-3xl);
  right: var(--space-3xl);
  width: 120px;
  height: 120px;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  border-right: 1px solid rgba(201, 169, 98, 0.15);
  pointer-events: none;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (min-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
  }
}

.philosophy-left {
  position: relative;
}

.philosophy-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.philosophy-title span.text-gold {
  display: block;
  margin-top: var(--space-sm);
}

.philosophy-right {
  padding-top: var(--space-sm);
}

.philosophy-lead {
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-left: var(--space-xl);
  border-left: 2px solid var(--color-gold);
}

.philosophy-right p:not(.philosophy-lead) {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* --- Story Section --- */

.story-section {
  position: relative;
  padding: var(--space-5xl) 0;
  background: var(--color-black);
  overflow: hidden;
}

.story-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

.story-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--color-black) 0%, rgba(8, 8, 8, 0.7) 40%, rgba(8, 8, 8, 0.3) 100%),
    linear-gradient(to top, rgba(8, 8, 8, 0.6) 0%, transparent 30%);
}

.story-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.story-content h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 400;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.story-text {
  margin-bottom: var(--space-3xl);
}

.story-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* Story Features Grid */
.story-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.story-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.story-feature:hover {
  border-color: var(--color-border-gold);
  background: rgba(22, 22, 22, 0.9);
  transform: translateX(8px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  font-size: var(--text-lg);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.story-feature:hover .feature-icon {
  background: var(--color-gold);
  color: var(--color-black);
}

.feature-content h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.feature-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .story-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: var(--space-3xl);
  }

  .story-image-overlay {
    background:
      linear-gradient(to bottom, transparent 40%, var(--color-black) 100%);
  }

  .story-content {
    max-width: 100%;
  }
}

/* --- Locations Section (New) --- */

.locations-section-new {
  padding: var(--space-5xl) 0;
  background: var(--color-black-light);
  position: relative;
}

/* Subtle decorative grid pattern */
.locations-section-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 98, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.locations-header-new {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-4xl);
  position: relative;
  z-index: 1;
}

.locations-header-new h2 {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.locations-header-new > p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Location Items - Editorial Style */
.locations-showcase {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-elegant);
  position: relative;
}

.location-item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.location-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-elegant);
}

.location-item:hover::after {
  width: 100%;
}

.location-item:hover {
  padding-left: var(--space-lg);
}

.location-number {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: 400;
  color: var(--color-gold);
  opacity: 0.2;
  line-height: 1;
  min-width: 80px;
  transition: opacity var(--transition-base);
}

.location-item:hover .location-number {
  opacity: 0.5;
}

.location-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 400;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.location-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.location-content > p:not(.location-tagline) {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.location-stats {
  display: flex;
  gap: var(--space-2xl);
}

.location-stats span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.location-stats strong {
  color: var(--color-text);
  font-weight: 600;
}

@media (max-width: 640px) {
  .location-item {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .location-number {
    font-size: var(--text-4xl);
  }
}

/* --- Timeline Section --- */

.timeline-section {
  padding: var(--space-5xl) 0;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

/* Background atmospheric glow */
.timeline-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.timeline-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-4xl);
  position: relative;
  z-index: 1;
}

.timeline-header h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.timeline-header > p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-gold), var(--color-border-light), var(--color-gold));
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-3xl);
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  border: 1px solid var(--color-border-gold);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.timeline-marker span {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-gold);
  transition: color var(--transition-base);
}

.timeline-item:hover .timeline-marker {
  background: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.timeline-item:hover .timeline-marker span {
  color: var(--color-black);
}

.timeline-content {
  padding-top: var(--space-md);
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 400;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
  transition: color var(--transition-base);
}

.timeline-item:hover .timeline-content h3 {
  color: var(--color-gold);
}

.timeline-content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 500px;
}

@media (max-width: 640px) {
  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: var(--space-md);
  }

  .timeline-marker {
    width: 40px;
    height: 40px;
  }

  .timeline-marker span {
    font-size: var(--text-sm);
  }
}

/* --- Values Section (New) --- */

.values-section-new {
  padding: var(--space-5xl) 0;
  background: var(--color-black-light);
  position: relative;
}

.values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-4xl);
}

.values-header h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 400;
  letter-spacing: -0.02em;
}

.values-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .values-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card-new {
  padding: var(--space-3xl) var(--space-2xl);
  background: var(--color-black-card);
  border: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-elegant);
}

/* Top gold line reveal on hover */
.value-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-elegant);
}

/* Subtle gradient overlay on hover */
.value-card-new::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.value-card-new:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.value-card-new:hover::before {
  transform: scaleX(1);
}

.value-card-new:hover::after {
  opacity: 1;
}

.value-number {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: 400;
  color: var(--color-gold);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.value-card-new h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
}

.value-card-new:hover h3 {
  color: var(--color-gold);
}

.value-card-new p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* --- About CTA Section --- */

.about-cta-section {
  position: relative;
  padding: var(--space-6xl) 0;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.about-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.75) 50%, rgba(8, 8, 8, 0.85) 100%);
}

/* Subtle gold atmospheric glow */
.about-cta-overlay::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.about-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
}

.about-cta-content h2 {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
  line-height: 1.1;
}

.about-cta-content > p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-3xl);
}

.about-cta-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

/* --- About Page Responsive Adjustments --- */

@media (max-width: 768px) {
  .about-hero {
    min-height: 90vh;
  }

  .about-hero-inner {
    padding-top: var(--space-xl);
  }

  .hero-eyebrow {
    padding-left: 0;
  }

  .hero-eyebrow::before {
    display: none;
  }

  .philosophy-section::before {
    display: none;
  }

  .philosophy-lead {
    font-size: var(--text-lg);
  }

  .about-cta-section {
    min-height: 400px;
    padding: var(--space-4xl) 0;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: var(--text-3xl);
  }

  .stat-block .stat-number {
    font-size: var(--text-2xl);
  }

  .location-item {
    padding: var(--space-xl) 0;
  }

  .value-card-new {
    padding: var(--space-2xl) var(--space-lg);
  }
}

/* Print styles */
@media print {
  .site-header,
  .site-footer,
  .hero-scroll,
  .btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}
