/* CSS Variables for color system */
:root {
  /* Light Mode Colors */
  --background: 210 40% 96%; /* #F8FAFC Ivoire */
  --foreground: 215 25% 12%; /* #1F2A37 Charcoal */
  --border: 214 32% 91%;
  
  --card: 210 40% 96%;
  --card-foreground: 215 25% 12%;
  --card-border: 214 32% 91%;
  
  --primary: 16 54% 50%; /* #C56A3A Copper/Terracotta */
  --primary-foreground: 210 40% 96%;
  
  --secondary: 215 20% 25%; /* #334155 Slate */
  --secondary-foreground: 210 40% 96%;
  
  --muted: 210 40% 96%;
  --muted-foreground: 215 16% 47%; /* #6B7280 Gris */
  
  --accent: 16 54% 50%;
  --accent-foreground: 210 40% 96%;
  
  --destructive: 0 84% 60%;
  --destructive-foreground: 210 40% 96%;
  
  --input: 214 32% 91%;
  --ring: 16 54% 50%;

  /* Fonts */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  
  /* Elevation effects */
  --elevate-1: rgba(0,0,0, .03);
  --elevate-2: rgba(0,0,0, .08);
  
  /* Shadows */
  --shadow-sm: 0px 1px 3px 0px hsl(215 25% 12% / 0.1), 0px 1px 2px -1px hsl(215 25% 12% / 0.1);
  --shadow-md: 0px 4px 6px -1px hsl(215 25% 12% / 0.1), 0px 2px 4px -2px hsl(215 25% 12% / 0.1);
  --shadow-lg: 0px 10px 15px -3px hsl(215 25% 12% / 0.1), 0px 4px 6px -4px hsl(215 25% 12% / 0.1);
  --shadow-xl: 0px 20px 25px -5px hsl(215 25% 12% / 0.1), 0px 8px 10px -6px hsl(215 25% 12% / 0.1);
  --shadow-2xl: 0px 25px 50px -12px hsl(215 25% 12% / 0.25);
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  :root {
    --elevate-1: rgba(255,255,255, .04);
    --elevate-2: rgba(255,255,255, .09);
    
    --background: 215 25% 12%;
    --foreground: 210 40% 96%;
    --border: 215 20% 25%;
    
    --card: 215 20% 25%;
    --card-foreground: 210 40% 96%;
    --card-border: 215 16% 47%;
    
    --secondary: 215 16% 47%;
    --secondary-foreground: 210 40% 96%;
    
    --muted: 215 20% 25%;
    --muted-foreground: 215 16% 47%;
    
    --input: 215 16% 47%;
    
    --shadow-sm: 0px 1px 3px 0px hsl(215 25% 12% / 0.4), 0px 1px 2px -1px hsl(215 25% 12% / 0.4);
    --shadow-md: 0px 4px 6px -1px hsl(215 25% 12% / 0.4), 0px 2px 4px -2px hsl(215 25% 12% / 0.4);
    --shadow-lg: 0px 10px 15px -3px hsl(215 25% 12% / 0.4), 0px 4px 6px -4px hsl(215 25% 12% / 0.4);
    --shadow-xl: 0px 20px 25px -5px hsl(215 25% 12% / 0.4), 0px 8px 10px -6px hsl(215 25% 12% / 0.4);
    --shadow-2xl: 0px 25px 50px -12px hsl(215 25% 12% / 0.6);
  }
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
}

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

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Utility classes */
.page-shell {
  min-height: calc(100vh - 5rem);
  padding-top: 5rem;
}

.section-intro {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 300;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 300;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.section-lead {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.section-pad {
  padding: 2rem 0;
}

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

.mt-4 {
  margin-top: 1rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-600 {
  max-width: 600px;
}

.max-w-800 {
  max-width: 800px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.items-start {
  align-items: flex-start;
}

.justify-center {\n  justify-content: center;\n}\n\n.gap-xs {
  gap: 0.5rem;
}

.gap-sm {
  gap: 0.75rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 1.5rem;
}

.gap-xl {
  gap: 2rem;
}

.gap-xxl {
  gap: 3rem;
}

.flex-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.grid-auto {
  --grid-min: 280px;
  --grid-gap: 2rem;
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-min), 1fr));
}

.grid-auto[data-min="200"] {
  --grid-min: 200px;
}

.grid-auto[data-min="250"] {
  --grid-min: 250px;
}

.grid-auto[data-min="300"] {
  --grid-min: 300px;
}

.grid-auto[data-gap="md"] {
  --grid-gap: 1.5rem;
}

.grid-auto[data-gap="lg"] {
  --grid-gap: 3rem;
}

.tag-on-dark {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.stat-value {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-caption {
  font-size: 0.875rem;
  color: hsl(var(--secondary-foreground) / 0.7);
}

.heading-sm {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.surface-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.surface-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.cta-section {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  text-align: center;
}

.cta-section p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.lang-link.disabled,
.lang-link[aria-disabled="true"],
.lang-link-mobile.disabled,
.lang-link-mobile[aria-disabled="true"] {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-primary {
  color: hsl(var(--primary));
}

.font-medium {
  font-weight: 500;
}

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

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all 0.2s ease;
}

.logo-link:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--elevate-1);
  border-radius: 0.375rem;
  z-index: -1;
}

.logo-img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-link.active {
  color: hsl(var(--primary));
  font-weight: 500;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
  background-color: var(--elevate-1);
}

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

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
}

.nav-mobile.active {
  display: flex;
}

.nav-link-mobile {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.2s ease;
}

.nav-link-mobile:hover,
.nav-link-mobile[aria-current="page"] {
  color: hsl(var(--primary));
}

/* Language Switcher */
.language-switch {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
}

@media (min-width: 1024px) {
  .language-switch {
    display: flex;
  }
}

.lang-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}

.lang-link:hover,
.lang-link.active {
  color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.1);
}

.lang-separator {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.mobile-language-switch {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.lang-link-mobile {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.lang-link-mobile:hover,
.lang-link-mobile.active {
  color: hsl(var(--primary));
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(var(--secondary) / 0.70) 0%, hsl(var(--secondary) / 0.70) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--primary) / 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--primary) / 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: #e5e7eb;
  margin-bottom: 1rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  font-weight: 300;
  color: #d1d5db;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 200px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--elevate-1);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background-color: white;
  color: hsl(var(--primary));
}

.btn-secondary:hover {
  background-color: #f9fafb;
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Section spacing */
.section-spacing {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section-spacing {
    padding: 6rem 0;
  }
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Universes Section */
.universes-section {
  padding: 5rem 0;
  background-color: hsl(var(--background));
}

.universes-grid {
  display: grid;
  gap: 2rem;
}

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

.universe-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.universe-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-0.5rem);
}

.universe-card:hover .universe-overlay {
  background: linear-gradient(to top, rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.2));
}

.universe-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.universe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.universe-card:hover .universe-image img {
  transform: scale(1.1);
}

.universe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.35));
  z-index: 1;
}

.universe-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.universe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--primary) / 0.2);
  color: white;
  border: 1px solid hsl(var(--primary) / 0.3);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.universe-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.universe-description {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.universe-cta {
  background: none;
  border: none;
  color: hsl(var(--primary));
  cursor: pointer;
  padding: 0;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.universe-cta:hover {
  color: hsl(var(--primary) / 0.8);
}

/* Advantages Section */
.advantages-section {
  padding: 5rem 0;
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.advantages-section .section-title {
  color: hsl(var(--secondary-foreground));
}

.advantages-section .section-subtitle {
  color: hsl(var(--secondary-foreground) / 0.8);
}

.advantages-grid {
  display: grid;
  gap: 2rem;
}

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

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

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

.advantage-icon {
  width: 4rem;
  height: 4rem;
  background-color: hsl(var(--primary) / 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background-color 0.3s ease;
  color: hsl(var(--primary));
}

.advantage-item:hover .advantage-icon {
  background-color: hsl(var(--primary) / 0.3);
}

.advantage-icon svg {
  width: 2rem;
  height: 2rem;
}

.advantage-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.advantage-description {
  color: hsl(var(--secondary-foreground) / 0.7);
  line-height: 1.6;
}

/* Partnership Section */
.partnership-section {
  padding: 5rem 0;
  background-color: hsl(var(--background));
}

.partnership-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.partnership-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / 0.2);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.partnership-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .partnership-title {
    font-size: 3rem;
  }
}

.partnership-description {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.6;
}

.partnership-benefits {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-check {
  width: 1.5rem;
  height: 1.5rem;
  background-color: hsl(var(--primary) / 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  flex-shrink: 0;
  color: hsl(var(--primary));
}

.benefit-check svg {
  width: 1rem;
  height: 1rem;
}

.benefit-title {
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: hsl(var(--muted-foreground));
}

.partnership-stats {
  display: flex;
  justify-content: center;
}

.stats-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--card-border));
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.stats-value {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: hsl(var(--primary));
  line-height: 1;
}

.stats-label {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background-color: hsl(var(--background));
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.875rem;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.gallery-category {
  font-size: 0.75rem;
  color: hsl(var(--primary));
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  display: inline-block;
}

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

.gallery-noscript {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 5rem 0;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  text-align: center;
}

.contact-cta-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .contact-cta-title {
    font-size: 3rem;
  }
}

.contact-cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .contact-cta-buttons {
    flex-direction: row;
  }
}

/* Footer */
.footer {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: none;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-links {
  text-align: right;
}

.footer-links-columns {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-links-columns .footer-list {
  align-items: flex-start;
}

@media (max-width: 767px) {
  .footer-links {
    text-align: left;
  }

  .footer-links-columns {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-description {
  color: hsl(var(--secondary-foreground) / 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--secondary-foreground) / 0.8);
}

.contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: hsl(var(--primary));
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-list a {
  color: hsl(var(--secondary-foreground) / 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--secondary-foreground) / 0.2);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: hsl(var(--secondary-foreground) / 0.8);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: hsl(var(--secondary-foreground) / 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

/* Responsive utilities */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .partnership-title {
    font-size: 2rem;
  }
  
  .contact-cta-title {
    font-size: 2rem;
  }
}

/* Animation delays for staggered effects */
.animate-fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-in-up:nth-child(4) { animation-delay: 0.4s; }

/* Hidden by default for elements with animation delays */
.animate-fade-in-up {
  animation-fill-mode: both;
}




/* Contact layout */
.contact-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-layout {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
    gap: 3rem;
  }
}

.contact-layout__form,
.contact-layout__info {
  width: 100%;
}

.contact-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--card-border));
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.contact-card__header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.contact-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--input));
  border-radius: 0.375rem;
  background-color: hsl(var(--background));
}

.contact-textarea {
  resize: vertical;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.contact-consent-checkbox {
  margin-top: 0.25rem;
}

.contact-consent-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.4;
}

.contact-submit {
  width: 100%;
}

.contact-status {
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.contact-status.hidden {
  display: none;
}

.contact-status--error {
  background-color: rgba(220, 53, 69, 0.12);
  border-color: rgba(220, 53, 69, 0.3);
  color: #a4161a;
}

.contact-success {
  display: none;
  text-align: center;
  background-color: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-success__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(34, 197, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-success__icon i {
  color: #15803d;
}

.contact-info-intro {
  margin-bottom: 2rem;
}

.contact-info-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-info-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--card-border));
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.contact-info-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: hsla(var(--primary), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-title,
.contact-info-highlight {
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.contact-info-highlight a {
  color: inherit;
  text-decoration: none;
}

.contact-info-highlight a:hover {
  text-decoration: underline;
}

.contact-info-note {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.contact-info-heading {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 300;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.contact-info-text {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-card-inner i {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}
.contact-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-card__subtitle {
  color: hsl(var(--muted-foreground));
}
