/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
  --white: #ffffff;
  --black: #000000;
  --dark-gray: #1a1a1a;
  --alpha-white: rgba(255, 255, 255, 0.5);
  --light-gray: #f1f1f1;
  --deep-black: #0a0a0a;
  
  /* Animation easings */
  --ease-dramatic: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

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

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

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

/* ==========================================================================
   Noise Overlay
   ========================================================================== */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  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");
  animation: noise-animation 20s linear infinite;
}

@keyframes noise-animation {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -5%); }
  20% { transform: translate(-10%, 5%); }
  30% { transform: translate(5%, -10%); }
  40% { transform: translate(-5%, 15%); }
  50% { transform: translate(-10%, 5%); }
  60% { transform: translate(15%, 0); }
  70% { transform: translate(0, 10%); }
  80% { transform: translate(-15%, 0); }
  90% { transform: translate(10%, 5%); }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s var(--ease-smooth);
  padding: 1.5rem 0;
}

.navigation.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: 40px;
  transition: all 0.5s var(--ease-smooth);
}

.nav-logo:hover {
  color: rgba(255, 255, 255, 0.7);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.5s var(--ease-smooth);
}

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

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

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

.nav-link.active {
  font-weight: 700;
}

.lang-switch a {
  padding: 0 5px;
}

.mobile-menu-btn {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 60;
}

.menu-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: background 0.3s;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

.mobile-menu-btn.active .menu-icon {
  background: transparent;
}

.mobile-menu-btn.active .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-btn.active .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-smooth);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu .lang-switch a {
  padding: 0 10px;
}

.mobile-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-expo-out);
}

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

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

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  perspective: 1200px;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform, opacity;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) grayscale(0.3);
}

.hero-content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  transform-style: preserve-3d;
}

.hero-title {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white);
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
  will-change: transform;
  text-align: center;
}

.lawyer-name {
  display: inline-block;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: rotateY(-90deg) translateY(60px);
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 2.6rem);
  font-weight: 200;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  filter: blur(20px);
  opacity: 0;
  will-change: filter, opacity;
}

.hero-line {
  position: absolute;
  left: 50%;
  bottom: 8rem;
  width: 1px;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(-50%);
  will-change: height;
}

.hero-services {
  position: absolute;
  left: 2rem;
  bottom: 8rem;
  z-index: 30;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0;
  transform: translateX(-50px);
}

.hero-services span {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copyright {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 30;
  opacity: 0;
  transform: translateY(20px);
}

.hero-copyright span {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
  position: relative;
  padding: 8rem 2rem;
  background: var(--black);
  overflow: hidden;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.about-images {
  position: relative;
}

.about-image-1 {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path, transform;
}

.about-image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.about-image-1:hover img {
  transform: scale(1.05);
}

.about-image-2 {
  position: relative;
  width: 75%;
  aspect-ratio: 2/3;
  margin-top: -8rem;
  margin-left: auto;
  margin-right: 1rem;
  overflow: hidden;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path, transform;
}

.about-image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.about-image-2:hover img {
  transform: scale(1.05);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.about-line {
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
  will-change: width;
}

.about-text {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
}

.about-author {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  opacity: 0;
  transform: scale(0.9) rotate(-3deg);
}

.author-image {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.author-bio {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.author-bio .word {
  display: inline-block;
  margin-right: 0.25rem;
  opacity: 0;
  transform: translateY(15px);
}

/* ==========================================================================
   Works Section (Horizontal Scroll)
   ========================================================================== */
.works {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.works-header {
  padding: 8rem 2rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.works-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.works-title .char,
.about-title .char {
  display: inline-block;
  opacity: 0;
  transform: scale(0);
}

.works-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
}

.works-scroll-container {
  position: relative;
  height: 100vh;
}

.works-horizontal {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  will-change: transform;
}

.work-card {
  position: relative;
  flex-shrink: 0;
  width: 80vw;
  max-width: 500px;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
  opacity: 0;
}

.work-image {
  position: absolute;
  inset: 0;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth), filter 0.7s;
}

.work-card:hover .work-image img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  opacity: 0.8;
  transition: opacity 0.5s;
}

.work-card:hover .work-overlay {
  opacity: 0.95;
}

.work-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.work-number {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.work-category {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  transition: color 0.5s;
}

.work-card:hover .work-category {
  color: rgba(255, 255, 255, 0.8);
}

.work-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--white);
  transition: transform 0.5s var(--ease-smooth);
}

.work-card:hover .work-name {
  transform: translateY(-4px);
}

.work-arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.5s var(--ease-smooth);
}

.work-card:hover .work-arrow {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: scale(1.1);
}

.work-arrow svg {
  transition: transform 0.5s var(--ease-smooth);
}

.work-card:hover .work-arrow svg {
  transform: translate(4px, -4px);
}

.works-spacer {
  flex-shrink: 0;
  width: 20vw;
}

.works-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 3rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.works-scroll-indicator span {
  font-size: 0.875rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
  position: relative;
  padding: 8rem 2rem;
  background: var(--black);
  overflow: hidden;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 5rem;
}

.services-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(60px);
  letter-spacing: 20px;
}

.services-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  filter: blur(15px);
  opacity: 0;
}

.services-list {
  position: relative;
}

.service-item {
  position: relative;
  cursor: pointer;
}

.service-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  width: 0;
  transition: background 0.5s;
  will-change: width;
}

.service-item:hover .service-line {
  background: rgba(255, 255, 255, 0.4);
}

.service-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .service-content {
    gap: 4rem;
    padding: 3rem 0;
  }
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.5s;
  opacity: 0;
  transform: scale(0.5);
}

.service-item:hover .service-number {
  color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.service-name {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  transition: all 0.5s;
}

.service-item.active .service-name {
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

.services-list:has(.service-item.active) .service-item:not(.active) .service-name {
  opacity: 0.3;
}

.service-desc {
  display: none;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  max-width: 300px;
  text-align: right;
  margin-left: auto;
  transition: opacity 0.5s;
}

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

.services-list:has(.service-item.active) .service-item:not(.active) .service-desc {
  opacity: 0.2;
}

.service-image-preview {
  position: fixed;
  pointer-events: none;
  z-index: 50;
  width: 300px;
  height: 400px;
  opacity: 0;
  transform: scale(0.9);
  overflow: hidden;
  will-change: transform, opacity;
}

.service-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
  position: relative;
  padding: 8rem 2rem;
  background: #0a0a0a;
  overflow: hidden;
  perspective: 1200px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 5rem;
  letter-spacing: 0.02em;
  opacity: 0;
  letter-spacing: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.testimonial-card {
  position: relative;
  background: rgba(23, 23, 23, 0.5);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  opacity: 0;
  transform: translateY(100px) rotateX(15deg) translateZ(-50px);
}

.testimonial-card:nth-child(1) {
  transform: rotateY(-5deg) translateY(100px) rotateX(15deg) translateZ(-50px);
}

.testimonial-card:nth-child(2) {
  transform: rotateY(0deg) translateY(100px) rotateX(15deg) translateZ(-50px);
}

.testimonial-card:nth-child(3) {
  transform: rotateY(5deg) translateY(100px) rotateX(15deg) translateZ(-50px);
}

.quote-mark {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: scale(0.5);
}

.testimonial-quote {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

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

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transform: scale(0);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.05), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

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

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog {
  position: relative;
  padding: 8rem 2rem;
  background: var(--black);
  overflow: hidden;
}

.blog-container {
  max-width: 1280px;
  margin: 0 auto;
}

.blog-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .blog-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.blog-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  opacity: 0;
}

.blog-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
}

.blog-all-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.5s;
}

.blog-all-link:hover {
  color: var(--white);
}

.blog-all-link svg {
  transition: transform 0.5s;
}

.blog-all-link:hover svg {
  transform: translate(4px, -4px);
}

@media (min-width: 1024px) {
  .blog-all-link {
    display: flex;
  }
}

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

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

.blog-card {
  cursor: pointer;
}

.blog-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 1.5rem;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.5s;
}

.blog-card:hover .blog-image::after {
  background: rgba(255, 255, 255, 0.05);
}

.blog-content {
  opacity: 0;
  transform: translateY(30px);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  transition: color 0.5s;
}

.blog-card-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.5s;
}

.blog-card:hover .blog-card-title {
  color: rgba(255, 255, 255, 0.8);
}

.blog-card:hover .blog-card-title::after {
  width: 100%;
}

.blog-excerpt {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.5s;
}

.blog-readmore:hover {
  color: rgba(255, 255, 255, 0.6);
}

.blog-readmore svg {
  transition: transform 0.5s;
}

.blog-card:hover .blog-readmore svg {
  transform: translate(4px, -4px);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
  position: relative;
  padding: 8rem 2rem;
  background: var(--black);
  overflow: hidden;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  position: relative;
}

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

.contact-divider {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(12deg) translateX(-50%);
  transform-origin: top center;
  will-change: height;
}

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

.contact-form {
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateX(-60px);
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.contact-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.contact-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
}

.form-label {
  position: absolute;
  left: 0;
  top: 0.75rem;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s var(--ease-smooth);
  pointer-events: none;
}

.form-label.active {
  top: -1.5rem;
  font-size: 0.875rem;
  color: var(--white);
}

.form-textarea-wrapper {
  position: relative;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 300;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.5s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.form-select {
  cursor: pointer;
  appearance: none;
}

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

.form-textarea {
  resize: none;
  min-height: 100px;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.5s;
}

.form-input:focus ~ .form-line,
.form-select:focus ~ .form-line,
.form-textarea:focus ~ .form-line {
  width: 100%;
}

.form-textarea-wrapper .form-line {
  bottom: 7px;
}

/* Honeypot field - hidden from users */
.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Anti-spam styles */
#antispam-num1,
#antispam-num2 {
  font-weight: 500;
  color: var(--white);
}

.antispam-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

/* Remove number input arrows */
#antispam::-webkit-outer-spin-button,
#antispam::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#antispam[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  font-size: 1rem;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.5s;
  transform: scale(0);
}

.contact-submit span,
.contact-submit svg {
  position: relative;
  z-index: 10;
}

.contact-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-expo-out);
}

.contact-submit:hover {
  color: var(--white);
}

.contact-submit:hover::before {
  transform: translateX(0);
}

.contact-submit svg {
  transition: transform 0.5s;
}

.contact-submit:hover svg {
  transform: translateX(4px);
}

.contact-image {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  will-change: transform, clip-path;
}

@media (min-width: 1024px) {
  .contact-image {
    aspect-ratio: auto;
  }
}

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

.contact-decor {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
}

.contact-decor.decor-1 {
  width: 8rem;
  height: 8rem;
  bottom: -2rem;
  left: -2rem;
}

.contact-decor.decor-2 {
  width: 6rem;
  height: 6rem;
  top: -2rem;
  right: -2rem;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: var(--black);
  overflow: hidden;
}

.footer-marquee {
  position: relative;
  margin-bottom: 5rem;
  overflow: hidden;
  opacity: 0;
}

.marquee-gradient-left,
.marquee-gradient-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10rem;
  z-index: 10;
  pointer-events: none;
}

.marquee-gradient-left {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.marquee-gradient-right {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

.marquee-content {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  padding-right: 2rem;
}

.marquee-text .highlight {
  color: rgba(255, 255, 255, 0.8);
}

.marquee-text .bullet {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 1rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.footer-border {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 4rem;
  width: 0;
  will-change: width;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  transition: color 0.5s;
  opacity: 0;
  transform: translateX(-30px);
}

.footer-link:hover {
  color: var(--white);
}

.footer-link span {
  display: block;
  transition: transform 0.5s;
}

.footer-link:hover span:first-child {
  transform: translateY(-100%);
}

.footer-link span:last-child {
  position: absolute;
  top: 100%;
  left: 0;
}

.footer-link:hover span:last-child {
  transform: translateY(-100%);
}

.footer-cta {
  grid-column: span 2;
  text-align: right;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--white);
  transition: color 0.5s;
}

.footer-cta-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.cta-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.5s;
}

.footer-cta-link:hover .cta-arrow {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(20px);
}

@media (min-width: 1024px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom p:last-child {
  color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .marquee-content {
    animation: none !important;
  }
  
  .noise-overlay {
    animation: none !important;
  }
}


.contact-info {
  margin: 0 0 60px 0;
  line-height: 2;
}

.contact-info h3 {
  font-size: 24px;
  margin: 20px 0 0 0;
}

/* ==========================================================================
   Thank You Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
}

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

.modal-container {
  position: relative;
  width: 90%;
  max-width: 480px;
  padding: 3rem 2.5rem;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.5s var(--ease-expo-out), opacity 0.5s var(--ease-expo-out);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.modal-close:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  transform: rotate(90deg);
}

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

.modal-icon {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.modal-circle {
  animation: modalCircleDraw 0.8s var(--ease-expo-out) forwards;
}

.modal-overlay.active .modal-circle {
  animation: modalCircleDraw 0.8s var(--ease-expo-out) 0.2s forwards;
}

@keyframes modalCircleDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.modal-check {
  animation: modalCheckDraw 0.5s var(--ease-expo-out) forwards;
}

.modal-overlay.active .modal-check {
  animation: modalCheckDraw 0.5s var(--ease-expo-out) 0.6s forwards;
}

@keyframes modalCheckDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s var(--ease-expo-out) 0.4s;
}

.modal-overlay.active .modal-title {
  opacity: 1;
  transform: translateY(0);
}

.modal-message {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s var(--ease-expo-out) 0.5s;
}

.modal-overlay.active .modal-message {
  opacity: 1;
  transform: translateY(0);
}

.modal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  font-size: 1rem;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-smooth);
  opacity: 0;
  transform: translateY(15px);
}

.modal-overlay.active .modal-button {
  opacity: 1;
  transform: translateY(0);
  transition: color 0.4s var(--ease-smooth), opacity 0.5s var(--ease-expo-out) 0.6s, transform 0.5s var(--ease-expo-out) 0.6s;
}

.modal-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-expo-out);
}

.modal-button:hover {
  color: var(--white);
}

.modal-button:hover::before {
  transform: translateX(0);
}

.modal-button span {
  position: relative;
  z-index: 1;
}

/* Loading state for submit button */
.contact-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

.contact-submit.loading span {
  opacity: 0;
}

.contact-submit::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: buttonSpinner 0.8s linear infinite;
  opacity: 0;
}

.contact-submit.loading::after {
  opacity: 1;
}

@keyframes buttonSpinner {
  to {
    transform: rotate(360deg);
  }
}

.note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.note a {
  text-decoration: underline;
}

.note a:hover {
  opacity: .7;
}

.privacy-section {
  min-height: 100vh;
  padding: 150px 40px 80px;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  line-height: 1.8;
}

strong {
  font-weight: 700;
}

.privacy-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.privacy-section p {
  margin-bottom: 1.5rem;
}

.privacy-section h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.privacy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-section a {
  font-weight: 700;
  transition: all .3s ease-out;
}

.privacy-section a:hover {
  opacity: .6;
}

.last-change {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

gmp-map,
#map {
  width: 100%;
  height: 100%;
}

.gm-style .gm-style-iw {
  color: #000;
}

.gm-style .gm-style-iw a {
  text-decoration: underline;
  display: block;
  margin: 5px 0 0 0;
  font-weight: 500;
}