:root {
  /* Color Palette */
  --primary: #ffffff;
  --secondary: #f8f9fa;
  --accent: #8497e0; /* Periwinkle for a modern, soft feel */
  --accent-dark: #6a7bc2;
  --text-main: #1a1a1a;
  --text-muted: #666666;
  --bg-main: #ffffff;
  --bg-dark: #121212;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(0, 0, 0, 0.05);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--bg-main);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent);
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

/* Layout */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

section {
  padding: var(--section-padding);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  border-bottom: 1px solid var(--glass-border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
  transition: height 0.3s ease;
}

header.scrolled .logo img {
  height: 35px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

header.scrolled .nav-links a {
  color: var(--text-main);
  text-shadow: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-main);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 20%), var(--bg-main);
}

.hero-content {
  z-index: 2;
  max-width: 650px;
  position: relative;
}

.hero-title {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 40px;
  letter-spacing: 4px;
}

.hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  background-color: var(--text-main);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: flex-start;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 0;
  position: relative;
  z-index: 2;
}

.about-img::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--accent);
  z-index: 1;
}

/* Work Section */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.work-card {
  background: white;
  padding: 40px;
  border: 1px solid #eee;
  transition: all 0.4s ease;
}

.work-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 25px;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Photo Gallery */
.gallery-grid {
  columns: 3 350px;
  column-gap: 20px;
}

.gallery-item {
  margin-bottom: 20px;
  break-inside: avoid;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.4);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

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

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Press Section */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.press-item {
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  gap: 50px;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid #eee;
}

.press-item:last-child {
  border-bottom: none;
}

.press-logo img {
  max-width: 100%;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.press-item:hover .press-logo img {
  filter: grayscale(0);
  opacity: 1;
}

.press-quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
}

.press-quote strong {
  display: block;
  font-style: normal;
  color: var(--text-main);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.contact-info li a {
  color: var(--text-main);
}

/* Animation Classes */
.fade-in-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Lightbox */
#lightbox {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  border-radius: 4px;
  animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 1050;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-img {
    width: 100%;
    opacity: 0.2;
    mask-image: none;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-img::before {
    display: none;
  }
  
  .press-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .press-logo {
    order: 1;
  }
  
  .press-quote {
    order: 2;
  }
  
  .press-thumb {
    order: 3;
    max-width: 200px;
    margin: 0 auto;
  }
}
