/* ========================================
   CSS Variables & Reset
   ======================================== */

:root {
  --color-bg-1: #f8f8f8;
  --color-bg-2: #f7f3ec;
  --color-bg-3: #ffffff;
  --color-text: #2a2a2a;
  --color-text-light: #6a6a6a;
  --color-accent: #8b7355;
  --color-accent-dark: #6d5a44;
  --color-accent-light: #b89b7f;
  --color-gold: #d4af37;
  --color-gold-light: #f4d03f;
  
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  
  --header-height: 130px;
  --header-height-small: 90px;
  
  --transition-smooth: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-elastic: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-luxury: all 1.4s cubic-bezier(0.23, 1, 0.32, 1);
  --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-smooth: cubic-bezier(0.33, 1, 0.68, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-padding-top: var(--header-height-small);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

/* ========================================
   Header & Navigation - Orbital Design
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
  height: var(--header-height-small);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1800px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
  position: relative;
}

/* Orbital Wrapper - Centers Everything */
.nav-orbital-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

/* Hide mobile logo on desktop */
.mobile-logo {
  display: none;
}

/* Central Logo */
.nav-logo-center {
  position: relative;
  z-index: 10;
  margin: 0 20px;
  transition: var(--transition-smooth);
}

.logo-link {
  display: block;
  position: relative;
}

.logo-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border: 1px dashed rgba(139, 115, 85, 0.15);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
  transition: var(--transition-smooth);
}

.site-header.scrolled .logo-link::before {
  width: 70px;
  height: 70px;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.logo {
  height: 70px;
  width: auto;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.site-header.scrolled .logo {
  height: 50px;
}

/* Orbiting Navigation Links */
.nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 8px 16px;
  transition: var(--transition-smooth);
  white-space: nowrap;
  overflow: hidden;
}

.nav-link span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform 0.8s var(--ease-elegant);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transition: width 0.8s var(--ease-elegant);
}

.nav-link::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.nav-link:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
  transition: all 0.8s var(--ease-elegant);
}

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

.nav-link:hover span {
  transform: scale(1.05);
}

.nav-link.active::before {
  width: 100%;
  background: var(--color-accent);
}

.nav-link.active {
  color: var(--color-accent-dark);
  font-weight: 600;
}

/* Specific positioning for orbiting effect */
.nav-orbit-1,
.nav-orbit-2,
.nav-orbit-3 {
  order: 1;
}

.nav-logo-center {
  order: 2;
}

.nav-orbit-4,
.nav-orbit-5 {
  order: 3;
}

/* Book Now Button - Stays Right */
.btn-book-now {
  position: absolute;
  right: 80px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.25);
  overflow: hidden;
}

.btn-book-now::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 1.2s var(--ease-luxury), height 1.2s var(--ease-luxury);
}

.btn-book-now:hover::before {
  width: 300px;
  height: 300px;
}

.btn-book-now span,
.btn-book-now svg {
  position: relative;
  z-index: 1;
}

.btn-book-now:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.5);
  transition: all 0.8s var(--ease-elegant);
}

.btn-arrow {
  transition: transform 0.8s var(--ease-elegant);
}

.btn-book-now:hover .btn-arrow {
  transform: translateX(6px);
}

/* ========================================
   Mobile Menu Toggle
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition-luxury);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

/* Mobile Menu Panel */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f7f3ec 100%);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  padding: 100px 40px 40px;
  overflow-y: auto;
  transition: right 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu-panel.active {
  right: 0;
}

.mobile-menu-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent);
  pointer-events: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.mobile-nav-link {
  position: relative;
  font-family: var(--font-accent);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-text);
  padding: 20px 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
  transition: var(--transition-luxury);
  opacity: 0;
  transform: translateX(30px);
}

.mobile-menu-panel.active .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-link:hover {
  color: var(--color-accent);
  padding-left: 20px;
  border-left: 3px solid var(--color-gold);
  transition: all 0.8s var(--ease-elegant);
}

.mobile-nav-link.active {
  color: var(--color-accent-dark);
  font-weight: 500;
  border-left: 3px solid var(--color-gold);
  padding-left: 15px;
}

.mobile-menu-cta {
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: white;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
  transition: var(--transition-luxury);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu-panel.active .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.mobile-menu-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 115, 85, 0.5);
}

/* ========================================
   Booking Modal
   ======================================== */

.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.booking-modal-content {
  position: relative;
  background: white;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.booking-modal.active .booking-modal-content {
  transform: scale(1) translateY(0);
}

.booking-modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent), var(--color-gold-light));
  border-radius: 16px 16px 0 0;
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.4);
}

.booking-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--color-text);
}

.booking-modal-close:hover {
  background: var(--color-accent);
  color: white;
  transform: rotate(90deg);
}

.booking-modal-title {
  font-family: var(--font-accent);
  font-size: 42px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 10px;
  text-align: center;
}

.booking-modal-subtitle {
  font-size: 16px;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .booking-modal-content {
    padding: 35px 25px;
  }
  
  .booking-modal-title {
    font-size: 32px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ========================================
   Hero Section - Enhanced
   ======================================== */

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

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.2), transparent 50%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
  animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-accent);
  font-size: 90px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: 3px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 5px;
  margin-bottom: 60px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-family: var(--font-body);
}

.btn-view-portfolio {
  display: inline-block;
  padding: 20px 55px;
  background: white;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition-elastic);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-view-portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-view-portfolio:hover::before {
  left: 100%;
}

.btn-view-portfolio:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(139, 115, 85, 0.5);
}

/* ========================================
   Shuffled Gallery Section - Enhanced
   ======================================== */

.shuffled-gallery {
  padding: 140px 60px;
  background: var(--color-bg-1);
  position: relative;
}

.shuffled-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  opacity: 0.3;
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  grid-auto-rows: 200px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.gallery-item.fade-in.animated {
  animation: none;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  transition: transform 0.8s var(--ease-elegant), box-shadow 0.8s var(--ease-elegant);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--color-gold), var(--color-accent), var(--color-gold-light));
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 3; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 3; }
.gallery-item:nth-child(8) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(9) { grid-column: span 4; grid-row: span 2; }

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

.gallery-item.fade-in.animated:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.05);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item-title {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 400;
}

/* ========================================
   Floating Animation
   ======================================== */

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

/* ========================================
   About Section - Enhanced
   ======================================== */

.about-section {
  padding: 140px 60px;
  background: var(--color-bg-2);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.08), transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-image {
  opacity: 0;
  transform: translateX(-40px);
}

.about-image.fade-in {
  opacity: 1;
  transform: translateX(0);
  transition: none;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: transform 1.2s var(--ease-luxury), box-shadow 1.2s var(--ease-luxury);
}

.about-image:hover img {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.about-content {
  opacity: 0;
  transform: translateX(40px);
}

.about-content.fade-in {
  opacity: 1;
  transform: translateX(0);
  transition: none;
}

.about-greeting {
  font-family: var(--font-accent);
  font-size: 58px;
  font-weight: 400;
  margin-bottom: 35px;
  color: var(--color-accent);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.about-greeting::before {
  content: '"';
  position: absolute;
  left: -40px;
  top: -20px;
  font-size: 100px;
  color: rgba(139, 115, 85, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.about-text {
  font-size: 18px;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
}

.about-text::first-letter {
  font-size: 2.2em;
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--color-accent);
  float: left;
  line-height: 1;
  margin-right: 8px;
}

/* ========================================
   Testimonials Section - Enhanced
   ======================================== */

.testimonials-section {
  position: relative;
  padding: 180px 60px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, rgba(139, 115, 85, 0.7), rgba(109, 90, 68, 0.85)),
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent);
  z-index: 1;
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  backdrop-filter: blur(2px);
}

.testimonials-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateY(40px);
}

.testimonials-content.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 32px;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 50px;
  font-style: italic;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  font-family: Georgia, serif;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
}

.testimonial-text::before {
  content: '"';
  top: -30px;
  left: -40px;
}

.testimonial-text::after {
  content: '"';
  bottom: -50px;
  right: -20px;
}

.testimonial-author {
  font-family: var(--font-accent);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-top: 20px;
}

.testimonial-author::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: white;
}

/* ========================================
   Services Section (Homepage) - Enhanced
   ======================================== */

.services-preview {
  padding: 150px 60px;
  background: var(--color-bg-1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-preview::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  opacity: 0.3;
}

.section-title {
  font-family: var(--font-accent);
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 25px;
  color: var(--color-text);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-accent), var(--color-gold), transparent);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.section-subtitle {
  font-size: 19px;
  color: var(--color-text-light);
  margin-bottom: 80px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-item.fade-in.animated {
  animation: none;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  transition: transform 0.8s var(--ease-elegant), box-shadow 0.8s var(--ease-elegant);
}

.service-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 1.4s var(--ease-luxury);
}

.service-item.fade-in.animated:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.service-item:hover img {
  transform: scale(1.1) rotate(1deg);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
}

.service-name {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.service-description {
  font-size: 15px;
  line-height: 1.6;
}

.btn-see-services {
  display: inline-block;
  padding: 20px 60px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition-elastic);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(139, 115, 85, 0.3);
}

.btn-see-services::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-see-services:hover::before {
  width: 300px;
  height: 300px;
}

.btn-see-services:hover {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(139, 115, 85, 0.5);
}

/* ========================================
   Footer - Enhanced
   ======================================== */

.site-footer {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: white;
  padding: 100px 60px 50px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.5), transparent);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(139, 115, 85, 0.5));
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 19px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-section h3 {
  font-family: var(--font-accent);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 25px;
  color: var(--color-accent-light);
  position: relative;
  padding-bottom: 15px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--color-accent-light);
  transform: translateX(5px);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 50px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ========================================
   Portfolio Page - Enhanced
   ======================================== */

.portfolio-filter-section {
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  background: rgba(248, 248, 248, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 30px 60px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When header is scrolled/smaller, adjust filter bar position */
.site-header.scrolled ~ main .portfolio-filter-section,
body:not(.at-top) .portfolio-filter-section {
  top: var(--header-height-small);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 14px 35px;
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  transform: scaleX(1);
}

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

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 115, 85, 0.3);
}

.filter-btn.active {
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.25);
}

/* Ensure text is always visible above background */
.filter-btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.portfolio-gallery {
  max-width: 1600px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 1;
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-item.fade-in.animated {
  animation: none;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  transition: transform 0.8s var(--ease-elegant), box-shadow 0.8s var(--ease-elegant);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-luxury);
}

.portfolio-item.fade-in.animated:hover {
  transform: translateY(-16px) scale(1.04);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

.portfolio-item:hover img {
  transform: scale(1.12) rotate(1deg);
  filter: brightness(1.05);
}

.portfolio-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.portfolio-item-title {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
}

.portfolio-item-category {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
}

/* ========================================
   Contact Page
   ======================================== */

.contact-section {
  padding: 120px 60px;
  background: var(--color-bg-2);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info {
  opacity: 0;
  transform: translateX(-40px);
}

.contact-info.fade-in {
  opacity: 1;
  transform: translateX(0);
  transition: none;
}

.contact-info h2 {
  font-family: var(--font-accent);
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--color-accent);
}

.contact-info p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail h3 {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--color-text);
}

.contact-detail p {
  font-size: 16px;
  margin-bottom: 0;
}

.contact-social {
  display: flex;
  gap: 20px;
}

.contact-social a {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-accent);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.contact-social a:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

.contact-form-wrapper {
  opacity: 0;
  transform: translateX(40px);
}

.contact-form-wrapper.fade-in {
  opacity: 1;
  transform: translateX(0);
  transition: none;
}

.contact-form {
  background: white;
  padding: 55px;
  border-radius: 12px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.12);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent), var(--color-gold-light));
  border-radius: 12px 12px 0 0;
  box-shadow: 0 2px 15px rgba(212, 175, 55, 0.3);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  background: white;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
  transform: translateY(-2px);
}

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

.form-submit {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-elastic);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.form-submit:hover::before {
  width: 500px;
  height: 500px;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.4);
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ========================================
   Utility Classes
   ======================================== */

.fade-in {
  animation: fadeInElegant 1.4s var(--ease-luxury) both;
  animation-fill-mode: both;
  will-change: opacity, transform;
}

.fade-in.animated {
  animation: none !important;
  will-change: auto;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

@keyframes fadeInElegant {
  0% {
    opacity: 0;
    transform: translate3d(0, 60px, 0) scale(0.95);
  }
  99.99% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Staggered animation delays for elegance */
.gallery-item.fade-in:nth-child(1) { animation-delay: 0s; }
.gallery-item.fade-in:nth-child(2) { animation-delay: 0.1s; }
.gallery-item.fade-in:nth-child(3) { animation-delay: 0.2s; }
.gallery-item.fade-in:nth-child(4) { animation-delay: 0.3s; }
.gallery-item.fade-in:nth-child(5) { animation-delay: 0.4s; }
.gallery-item.fade-in:nth-child(6) { animation-delay: 0.5s; }
.gallery-item.fade-in:nth-child(7) { animation-delay: 0.6s; }
.gallery-item.fade-in:nth-child(8) { animation-delay: 0.7s; }
.gallery-item.fade-in:nth-child(9) { animation-delay: 0.8s; }

.portfolio-item.fade-in:nth-child(1) { animation-delay: 0s; }
.portfolio-item.fade-in:nth-child(2) { animation-delay: 0.15s; }
.portfolio-item.fade-in:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item.fade-in:nth-child(4) { animation-delay: 0.45s; }
.portfolio-item.fade-in:nth-child(5) { animation-delay: 0.6s; }
.portfolio-item.fade-in:nth-child(6) { animation-delay: 0.75s; }

.service-item.fade-in:nth-child(1) { animation-delay: 0s; }
.service-item.fade-in:nth-child(2) { animation-delay: 0.2s; }
.service-item.fade-in:nth-child(3) { animation-delay: 0.4s; }

/* Mobile optimization - elegant animations on all devices */
@media (max-width: 768px) {
  /* Keep elegant animations but adjust for mobile */
  .fade-in {
    animation-duration: 1.2s;
  }
  
  @keyframes fadeInElegant {
    0% {
      opacity: 0;
      transform: translate3d(0, 40px, 0) scale(0.96);
    }
    99.99% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }
  
  /* Reset base transforms for mobile */
  .gallery-item {
    transform: translate3d(0, 40px, 0) scale(0.96);
  }
  
  .portfolio-item {
    transform: translate3d(0, 40px, 0) scale(0.96);
  }
  
  .service-item {
    transform: translate3d(0, 40px, 0) scale(0.96);
  }
  
  .gallery-item.fade-in.animated,
  .portfolio-item.fade-in.animated,
  .service-item.fade-in.animated {
    animation: none;
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
  }
  
  /* Subtle hover effects on mobile */
  .gallery-item.fade-in.animated:active,
  .portfolio-item.fade-in.animated:active,
  .service-item.fade-in.animated:active {
    transform: translateY(-4px) scale(1.01) !important;
  }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .gallery-item,
  .portfolio-item,
  .service-item,
  .about-image,
  .about-content,
  .contact-info,
  .contact-form-wrapper,
  .testimonials-content {
    opacity: 1 !important;
    transform: none !important;
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   Scroll Progress Bar
   ======================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent), var(--color-gold-light));
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  z-index: 10000;
  transition: width 0.3s var(--ease-elegant);
}

/* ========================================
   Page Loader
   ======================================== */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

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

.loader-logo {
  height: 80px;
  width: auto;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* ========================================
   Responsive Design - Enhanced
   ======================================== */

@media (max-width: 1200px) {
  .nav-orbital-wrapper {
    gap: 5px;
  }
  
  .nav-link {
    font-size: 12px;
    padding: 8px 12px;
  }
  
  .btn-book-now {
    padding: 12px 25px;
    font-size: 12px;
    right: 40px;
  }
}

@media (max-width: 1024px) {
  .nav-container {
    padding: 0 40px;
  }
  
  .nav-orbital-wrapper {
    gap: 4px;
  }
  
  .nav-link {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .logo {
    height: 60px;
  }
  
  .site-header.scrolled .logo {
    height: 40px;
  }
  
  .hero-title {
    font-size: 70px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .btn-book-now {
    right: 30px;
  }
}

@media (max-width: 968px) {
  /* Show mobile menu elements */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-overlay,
  .mobile-menu-panel {
    display: block;
  }
  
  /* Hide desktop navigation */
  .desktop-nav {
    display: none !important;
  }
  
  .desktop-cta {
    display: none !important;
  }
  
  /* Show mobile logo, hide desktop nav logo */
  .mobile-logo {
    display: block !important;
    position: static;
    transform: none;
    margin: 0;
  }
  
  .nav-container {
    justify-content: space-between;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
    --header-height-small: 70px;
  }
  
  .site-header {
    border-bottom: none;
    height: var(--header-height);
  }
  
  .site-header.scrolled {
    height: var(--header-height-small);
  }
  
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .logo {
    height: 50px;
  }
  
  .site-header.scrolled .logo {
    height: 38px;
  }
  
  .logo-link::before {
    display: none;
  }
  
  .hero-title {
    font-size: 50px;
  }
  
  .hero-title::after {
    width: 60px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 40px;
  }
  
  .btn-view-portfolio {
    padding: 16px 40px;
    font-size: 12px;
  }
  
  .shuffled-gallery,
  .about-section,
  .services-preview {
    padding: 80px 30px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 15px;
  }
  
  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  
  .about-images {
    grid-template-columns: 1fr;
  }
  
  .about-greeting {
    font-size: 40px;
  }
  
  .about-greeting::before {
    font-size: 70px;
    left: -25px;
  }
  
  .section-title {
    font-size: 42px;
  }
  
  .section-title::after {
    width: 80px;
  }
  
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }
  
  .testimonials-section {
    padding: 100px 30px;
  }
  
  .testimonial-text {
    font-size: 22px;
    line-height: 1.7;
  }
  
  .testimonial-text::before,
  .testimonial-text::after {
    font-size: 40px;
  }
  
  .testimonial-text::before {
    left: -20px;
    top: -20px;
  }
  
  .testimonial-text::after {
    right: -10px;
    bottom: -30px;
  }
  
  .testimonial-author {
    font-size: 20px;
    letter-spacing: 2px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-filter-section {
    padding: 20px 30px;
  }
  
  .filter-btn {
    padding: 12px 25px;
    font-size: 11px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form {
    padding: 35px;
  }
  
  .contact-info h2 {
    font-size: 38px;
  }
  
  .site-footer {
    padding: 60px 30px 30px;
  }
  
  .footer-section h3 {
    font-size: 22px;
  }
  
  .service-item img {
    height: 350px;
  }
}

