@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
/* Portfolio: filters, cards, lightbox */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 24px;
}
.filter-btn {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(234,10,140,.25);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-out-cubic);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.filter-btn.active { background: linear-gradient(135deg, var(--primary), var(--primary-700)); color: white; box-shadow: 0 8px 24px rgba(234,10,140,.35); border-color: transparent; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-item { margin: 0; }
.portfolio-card {
  all: unset;
  display: block;
  cursor: pointer;
  border: 1px solid rgba(234,10,140,.2);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(234,10,140,.06), rgba(112,128,144,.06));
  box-shadow: 0 15px 50px rgba(0,0,0,.35);
  transition: transform .35s var(--ease-out-cubic), box-shadow .35s var(--ease-out-cubic), border-color .35s;
}
.portfolio-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: 0 22px 64px rgba(234,10,140,.35), 0 0 28px rgba(234,10,140,.15); }
.portfolio-card .thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, rgba(234,10,140,.1), rgba(112,128,144,.1)); }
.portfolio-card figcaption { padding: 14px 16px 16px; }
.portfolio-card h3 { margin: 0 0 6px; color: var(--text); font-size: 1.1rem; }
.portfolio-card p { margin: 0 0 10px; color: var(--muted); font-size: .95rem; }
.chip { display: inline-block; padding: 6px 10px; border-radius: 999px; background: rgba(234,10,140,.12); color: var(--primary); border: 1px solid rgba(234,10,140,.35); font-size: .75rem; font-weight: 700; letter-spacing: .3px; }

/* Hide animation */
.portfolio-item[hidden] { display: none !important; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(8,9,14,.95); backdrop-filter: blur(10px); padding: 24px; }
.lightbox.active { display: flex; align-items: center; justify-content: center; }
.lightbox-content { position: relative; max-width: 1100px; width: 100%; background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(234,10,140,.2); border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.5); overflow: hidden; animation: fadeUp .4s var(--ease-out-expo); }
.lightbox-media { position: relative; background: #000; }
.lightbox-media iframe, .lightbox-media img, .lightbox-media video { width: 100%; height: min(62vh, 70vw); object-fit: contain; display: block; }
.lightbox-meta { padding: 18px 22px 22px; }
.lightbox-meta h3 { margin: 0 0 6px; color: var(--primary); }
.lightbox-close { position: absolute; top: 10px; right: 14px; font-size: 2rem; line-height: 1; color: var(--muted); background: transparent; border: none; cursor: pointer; transition: transform .2s ease, color .2s ease; }
.lightbox-close:hover { transform: scale(1.1); color: var(--primary); }

/* Circular watermark badge */
.watermark-badge {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 200px;
  height: 200px;
  z-index: 3000; /* above chat bubble/popups */
  transform: rotate(45deg);
  opacity: 0.9;
  transition: all 0.3s var(--ease-out-cubic);
  pointer-events: auto;
  cursor: pointer;
}
.watermark-badge:hover {
  opacity: 1;
  transform: rotate(45deg) scale(1.05);
}
/* Rotate on hover */
@keyframes wm-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.watermark-badge:hover .watermark-circle,
.watermark-badge:hover .watermark-text,
.watermark-badge:hover .watermark-icon { animation: wm-rotate 30s linear infinite; transform-origin: 50% 50%; }
.watermark-circle {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(234,10,140,0.28), 0 0 14px rgba(234,10,140,0.18);
  border: 1px solid rgba(255,255,255,0.18);
}
.watermark-icon {
  width: 120px;
  height: 120px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.watermark-text {
  position: absolute;
  width: 240px;
  height: 240px;
  pointer-events: none;
}
.watermark-text svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.watermark-text text {
  font-family: 'Quicksand', sans-serif;
  font-size: 6px;
  font-weight: 400;
  fill: white;
  text-shadow: none;
}
@media (max-width: 640px) {
  .watermark-badge {
    width: 140px;
    height: 140px;
    bottom: 24px;
    left: 16px;
  }
  .watermark-icon {
    width: 72px;
    height: 72px;
  }
  .watermark-text {
    width: 170px;
    height: 170px;
  }
  .watermark-text text {
    font-size: 5px;
    font-weight: 400;
  }
}

/* Base */

:root {
  color-scheme: dark light;
  /* Custom color palette - matching logo */
  --bg: #08090e;
  --surface: #0f1117;
  --surface-2: #151820;
  --text: #f0f2f8;
  --muted: #8891a8;
  --primary: #ea0a8c;
  --primary-600: #d6097d;
  --primary-700: #c2086e;
  --accent: #708090;
  --accent-secondary: #ff3eb5;
  --ring: #ea0a8c;
  --shadow: 0 20px 60px rgba(0,0,0,.5);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.7);
  
  /* Animation timings */
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  background: 
    radial-gradient(1400px 700px at 90% -5%, rgba(234,10,140,.08), transparent),
    radial-gradient(1000px 600px at -5% 30%, rgba(112,128,144,.06), transparent),
    radial-gradient(800px 800px at 50% 100%, rgba(255,62,181,.04), transparent),
    var(--bg);
  background-attachment: fixed;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg) 60%, transparent 100%);
  z-index: 999;
  pointer-events: none;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.3s var(--ease-out-cubic); }

/* Home page: remove heather/radial background */
.home { background: var(--bg) !important; }
.home::before { display: none; }

/* Animated gradient text */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Fade up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in from left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in from right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale in animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pulse glow */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(234,10,140,0.3), var(--shadow); }
  50% { box-shadow: 0 0 40px rgba(234,10,140,0.5), var(--shadow-lg); }
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Bounce animation for scroll arrow */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Icon path draw animation */
@keyframes drawPath {
  0% {
    stroke-dashoffset: 400;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Pause bars fade in */
@keyframes pauseFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.container { 
  max-width: 1400px; 
  margin-inline: auto; 
  padding: 0 20px;
  width: 100%;
}

.section { 
  padding: 72px 0;
  animation: fadeUp 0.8s var(--ease-out-expo) backwards;
}

.section:nth-child(even) {
  animation-delay: 0.1s;
}

.section--alt { 
  background: linear-gradient(0deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.muted { color: var(--muted); }

/* Header / Nav */
.site-header { 
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%; 
  z-index: 1000; 
  backdrop-filter: none; 
  background: transparent !important; 
  border-bottom: none;
  padding-top: 12px;
  box-shadow: none;
  animation: fadeUp 0.5s var(--ease-out-expo);
}

.site-header .container {
  background: transparent !important;
}

.site-header .container { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  height: 130px;
  position: relative;
}

.brand { 
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out-cubic);
}

.brand img {
  height: 120px;
  width: auto;
}

.page-template .brand img {
  height: 80px;
}

.brand:hover {
  transform: scale(1.05);
}

/* Menu overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.3s ease;
  z-index: 998;
  opacity: 0;
}

.menu-overlay.active {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

/* Menu Wrapper */
.menu-wrapper {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Menu Toggle (Aperture Icon) */
.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}



.aperture-icon {
  width: 48px;
  height: 48px;
  display: block;
  /* Tint to brand ink color and add subtle stroke/glow for bolder look */
  filter: brightness(0) saturate(100%) invert(20%) sepia(95%) saturate(9000%) hue-rotate(320deg) brightness(115%) contrast(130%)
          drop-shadow(0 0 0.5px rgba(234,10,140,0.9)) drop-shadow(0 0 1.5px rgba(234,10,140,0.55));
}
.menu-wrapper:hover .aperture-icon {
  transform: scale(1.06);
  filter: brightness(0) saturate(100%) invert(20%) sepia(95%) saturate(9000%) hue-rotate(320deg) brightness(125%) contrast(135%)
          drop-shadow(0 0 1px rgba(234,10,140,0.95)) drop-shadow(0 0 3px rgba(234,10,140,0.6));
}




/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
  pointer-events: none;
  padding-top: 10px;
  margin-top: -10px;
}

.menu-wrapper:hover .dropdown-menu,
.dropdown-menu:hover {
  pointer-events: auto;
}

.menu-item {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 2px 0;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.3s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
  white-space: nowrap;
}

.menu-wrapper:hover .menu-item:nth-child(1) { 
  animation: dropDown 0.6s var(--ease-out-cubic) 0s forwards; 
}
.menu-wrapper:hover .menu-item:nth-child(2) { 
  animation: dropDown 0.6s var(--ease-out-cubic) 0.2s forwards; 
}
.menu-wrapper:hover .menu-item:nth-child(3) { 
  animation: dropDown 0.6s var(--ease-out-cubic) 0.4s forwards; 
}
.menu-wrapper:hover .menu-item:nth-child(4) { 
  animation: dropDown 0.6s var(--ease-out-cubic) 0.6s forwards; 
}
.menu-wrapper:hover .menu-item:nth-child(5) { 
  animation: dropDown 0.6s var(--ease-out-cubic) 0.8s forwards; 
}

@keyframes dropDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-item:hover {
  color: var(--primary);
  transform: translateX(-5px);
}

/* Hero */
.hero { 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
/* Background video behind gradient */
.bg-video { position: absolute; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.bg-video__media { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; opacity: 0; transition: opacity 600ms ease; background: #000; }
.bg-video__media.is-active { opacity: 1; }

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /* Gradient overlay only, so the video shows through */
  background: linear-gradient(to right, rgba(8,9,14,0.75) 0%, rgba(8,9,14,0.45) 50%, rgba(8,9,14,0.65) 100%);
  z-index: -1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(112,128,144,.08), transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

main {
  min-height: 220vh;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 90%;
}

/* Play Button Center */
.play-button-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button-center img {
  width: 80px;
  height: 80px;
  filter: brightness(0) saturate(100%) invert(26%) sepia(98%) saturate(6247%) hue-rotate(323deg) brightness(95%) contrast(99%) drop-shadow(0 0 8px rgba(234,10,140,0.8)) drop-shadow(0 0 15px rgba(234,10,140,0.6)) drop-shadow(0 4px 10px rgba(234,10,140,0.5));
  transition: all 0.3s ease;
}

.play-button-center:hover img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(98%) saturate(6247%) hue-rotate(323deg) brightness(95%) contrast(99%) drop-shadow(0 0 12px rgba(234,10,140,1)) drop-shadow(0 0 20px rgba(234,10,140,0.8)) drop-shadow(0 6px 15px rgba(234,10,140,0.7));
}

.play-button-center:hover {
  transform: translate(-50%, -50%) scale(1.15);
}
.hero-icon-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-icon {
  width: clamp(400px, 60vw, 1000px);
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(234,10,140,.5));
  opacity: 0;
  transition: transform 0.3s ease-out;
}

/* Hero Text */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-headline {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem); 
  line-height: 1.15; 
  margin: 0 0 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0;
}

.hero-word {
  display: inline;
  background: linear-gradient(
    135deg, 
    #ffffff 0%, 
    var(--accent) 30%,
    var(--primary) 60%,
    var(--accent-secondary) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
}

.hero-subheadline { 
  font-size: clamp(1.5rem, 3vw, 2rem); 
  background: linear-gradient(
    135deg,
    var(--muted) 0%,
    #ffffff 50%,
    var(--muted) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
  max-width: 60ch; 
  margin: 0 0 32px;
  line-height: 1.7;
  font-weight: 500;
  opacity: 0;
}

.hero-links { 
  display: flex; 
  flex-direction: column;
  gap: 8px;
}

.hero-link {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  background: var(--primary);
  padding: 16px 32px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(234,10,140,0.4);
}

.hero-link:hover {
  background: white;
  color: var(--primary);
  transform: translateY(0) scale(1.05);
  box-shadow: 0 15px 40px rgba(234,10,140,0.6);
}

/* Buttons */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px; 
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px; 
  border: 1px solid transparent; 
  transition: all 0.3s var(--ease-out-cubic);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::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 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active { 
  transform: translateY(2px); 
}

.btn--primary { 
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  border-color: rgba(255,255,255,.2); 
  color: white; 
  box-shadow: 0 10px 30px rgba(234,10,140,.4), 0 0 20px rgba(234,10,140,.2);
  animation: pulseGlow 3s ease-in-out infinite;
}

.btn--primary:hover { 
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  box-shadow: 0 15px 40px rgba(234,10,140,.5), 0 0 30px rgba(234,10,140,.3);
  transform: translateY(-2px);
}

.btn--ghost { 
  background: rgba(255,255,255,.03); 
  border-color: rgba(234,10,140,.3); 
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover { 
  background: rgba(234,10,140,.1);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(234,10,140,.2);
  transform: translateY(-2px);
}

/* Cards */
.cards { 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px;
}

.card { 
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(234,10,140,.15);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  transition: all 0.4s var(--ease-out-cubic);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s var(--ease-out-expo) backwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(234,10,140,.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 25px 70px rgba(234,10,140,.3), 0 0 40px rgba(234,10,140,.1);
}

.card:hover::before {
  opacity: 1;
}

.card h3 { 
  margin-top: 0;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.card p {
  position: relative;
  z-index: 1;
}

.card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

/* Gallery */
.gallery { 
  grid-template-columns: repeat(3, 1fr); 
  gap: 16px;
}

.tile { 
  margin: 0;
  animation: scaleIn 0.6s var(--ease-out-expo) backwards;
}

.tile:nth-child(1) { animation-delay: 0.1s; }
.tile:nth-child(2) { animation-delay: 0.2s; }
.tile:nth-child(3) { animation-delay: 0.3s; }
.tile:nth-child(4) { animation-delay: 0.4s; }
.tile:nth-child(5) { animation-delay: 0.5s; }
.tile:nth-child(6) { animation-delay: 0.6s; }

.tile .ph { 
  aspect-ratio: 16 / 9; 
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(234,10,140,.08), rgba(112,128,144,.08));
  border: 1px solid rgba(234,10,140,.2);
  box-shadow: 0 15px 50px rgba(0,0,0,.4);
  transition: all 0.4s var(--ease-out-cubic);
  position: relative;
  overflow: hidden;
}

.tile .ph::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.tile:hover .ph {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(234,10,140,.4), 0 0 30px rgba(234,10,140,.2);
}

.tile:hover .ph::before {
  transform: translateX(100%);
}

.tile figcaption { 
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted); 
  margin-top: 10px;
  transition: color 0.3s ease;
}

.tile:hover figcaption {
  color: var(--primary);
}

/* Typography */
h2 { 
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--text), var(--muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h3 { 
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Grid helper */
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Contact Page */
.contact-headline {
  text-align: center;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--primary);
  margin-bottom: 48px;
}

/* Contact form */
.contact-form {
  animation: fadeUp 0.8s var(--ease-out-expo) 0.2s backwards;
}

.contact-form label { 
  display: grid; 
  gap: 8px;
  font-weight: 500;
  margin-bottom: 20px;
}

.phone-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

input, textarea, select { 
  background: var(--surface);
  color: var(--text);
  border: 1px solid rgba(234,10,140,.2);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.2);
  transition: all 0.3s var(--ease-out-cubic);
}

select {
  cursor: pointer;
}

select option:disabled {
  color: var(--muted);
}

.project-type-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.project-type-grid label {
  margin-bottom: 0;
}

.get-to-know-wrapper {
  display: flex;
  align-items: flex-end;
}

.get-to-know-btn {
  background: var(--surface);
  color: white;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(234,10,140,.2);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.2);
}

.get-to-know-btn:hover {
  border-color: var(--primary);
  background: var(--surface-2);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.3), 0 0 0 4px rgba(234,10,140,.15), 0 0 20px rgba(234,10,140,.2);
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Contact Info Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.expand-form-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(234,10,140,.4);
  border-radius: 20px;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-cubic);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.expand-form-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.expand-form-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(234,10,140,.2);
  transform: translateY(-4px);
}

.expand-form-btn:hover::before {
  transform: translateX(100%);
}

.form-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.form-wrapper.expanded {
  max-height: 2000px;
}

.contact-info-card {
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(234,10,140,.4);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s var(--ease-out-cubic);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 25px 70px rgba(234,10,140,.3), 0 0 40px rgba(234,10,140,.1);
}

.contact-info-card:hover::before {
  transform: translateX(100%);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  filter: brightness(0) invert(1);
}

.contact-info-card h3 {
  color: var(--primary);
  margin: 0 0 16px 0;
  font-size: 1.5rem;
}

.contact-info-card p {
  margin: 8px 0;
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-info-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
}

.phone-number-link {
  display: block;
  color: var(--text);
  text-decoration: none;
}

.phone-number-link:hover .phone-number-display {
  color: var(--primary);
}

.phone-number-display {
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.letter-num {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.letter-num small {
  font-size: 0.75em;
  color: var(--muted);
  margin-top: 2px;
}

.request-visit-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid rgba(234,10,140,.2);
  border-radius: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.request-visit-btn:hover {
  border-color: var(--primary);
  background: var(--surface-2);
  box-shadow: 0 0 0 4px rgba(234,10,140,.15);
}

.email-link {
  font-size: 1.3rem;
  font-weight: 600;
}

/* Visit Request Modal */
.visit-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(8,9,14,0.95);
  backdrop-filter: blur(10px);
}

.visit-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.visit-modal-content {
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(234,10,140,.2);
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: fadeUp 0.4s var(--ease-out-expo);
}

.visit-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.visit-modal-close:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.visit-modal-content h3 {
  color: var(--primary);
  margin: 0 0 24px 0;
  font-size: 1.8rem;
  text-align: center;
}

.visit-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
  margin-bottom: 20px;
}

.visit-form button {
  width: 100%;
  margin-top: 10px;
}

input:focus, textarea:focus, select:focus { 
  border-color: var(--primary);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.3), 0 0 0 4px rgba(234,10,140,.15), 0 0 20px rgba(234,10,140,.2);
  background: var(--surface-2);
}

/* Footer */
 .site-footer { 
  position: relative;
  z-index: 1002;
  border-top: none;
  padding: 32px 0 56px;
  margin-top: 48px;
  background: transparent;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.site-footer .container { 
  display: flex;
  align-items: center; 
  justify-content: center; 
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}

.site-footer p {
  color: white;
  font-weight: 600;
}

.site-footer .social { display: none; }

.site-footer a { 
  color: var(--muted);
  font-weight: 500;
  transition: all 0.3s var(--ease-out-cubic);
}

.site-footer a:hover { 
  color: var(--primary);
  transform: translateY(-2px);
}

/* Our Story Page */
.story-headline {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.story-headline .line1 {
  display: block;
}

.story-headline .line2 {
  display: block;
  padding-left: calc(50% + 24px);
}

.story-headline .highlight {
  color: var(--primary);
  font-style: italic;
}

.story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.story-column h3 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 24px;
}

.story-column p {
  margin-bottom: 16px;
  line-height: 1.8;
  text-align: justify;
}

.story-cta {
  display: block;
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  margin-top: 64px;
  margin-bottom: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.story-cta::after {
  content: attr(data-hover-line1) "\A" attr(data-hover-line2);
  position: absolute;
  left: 0;
  right: 0;
  color: transparent;
  white-space: pre;
  transition: all 0.3s ease;
}

.story-cta:hover {
  color: transparent;
  transform: scale(1.05);
}

.story-cta:hover::after {
  color: var(--primary);
}

/* Smooth italic transition animation */
@keyframes smoothItalic {
  0%, 100% { 
    transform: skewX(0deg);
  }
  50% { 
    transform: skewX(-8deg);
  }
}

/* Services Page */
.services-headline {
  text-align: center;
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--primary);
  animation: smoothItalic 8s ease-in-out infinite;
  display: block;
  width: 100%;
}

.services-subheadline {
  text-align: center;
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.service-card {
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(234,10,140,.4);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  transition: all 0.4s var(--ease-out-cubic);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 25px 70px rgba(234,10,140,.3), 0 0 40px rgba(234,10,140,.1);
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%) invert(20%) sepia(95%) saturate(9000%) hue-rotate(320deg) brightness(115%) contrast(130%) drop-shadow(0 2px 4px rgba(234,10,140,0.3));
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.service-card p {
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: justify;
}

.service-link {
  display: block;
  margin: 24px auto 0;
  padding: 10px 24px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-cubic);
  white-space: nowrap;
  width: fit-content;
}

.service-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234,10,140,.4);
}

.service-card.coming-soon {
  opacity: 0.7;
}

.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent-secondary));
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.services-cta {
  display: block;
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  margin-top: 64px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-cta:hover {
  transform: scale(1.05);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(8,9,14,0.95);
  backdrop-filter: blur(10px);
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(234,10,140,.2);
  padding: 48px;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: fadeUp 0.4s var(--ease-out-expo);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.modal-icon {
  margin-bottom: 16px;
}

.modal-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(95%) saturate(9000%) hue-rotate(320deg) brightness(115%) contrast(130%) drop-shadow(0 2px 4px rgba(234,10,140,0.3));
}

.modal-content h2 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 24px;
}

.modal-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

@media (max-width: 640px) {
  .modal-content {
    padding: 32px 24px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
/* Chat Bubble */
.chat-bubble {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-cubic);
}

.chat-bubble:hover {
  transform: scale(1.15) translateY(-4px);
}

.chat-bubble img {
  width: 64px;
  height: 64px;
  transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(20%) sepia(95%) saturate(9000%) hue-rotate(320deg) brightness(115%) contrast(130%)
          drop-shadow(0 10px 20px rgba(234,10,140,0.4)) drop-shadow(0 0 15px rgba(234,10,140,0.3));
}

.chat-bubble:hover img {
  transform: rotate(-10deg) scale(1.1);
  filter: brightness(0) saturate(100%) invert(20%) sepia(95%) saturate(9000%) hue-rotate(320deg) brightness(125%) contrast(135%)
          drop-shadow(0 15px 30px rgba(234,10,140,0.5)) drop-shadow(0 0 20px rgba(234,10,140,0.4));
}

/* Chat Popup */
.chat-popup {
  position: fixed;
  bottom: 110px;
  right: 32px;
  width: 360px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(234,10,140,.3);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 30px rgba(234,10,140,.2);
  z-index: 1499;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s var(--ease-out-cubic);
}

.chat-popup.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(234,10,140,.2);
  background: linear-gradient(135deg, rgba(234,10,140,.1), transparent);
  border-radius: 20px 20px 0 0;
}

.chat-popup-header h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.chat-popup-close {
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.chat-popup-close:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.chat-popup-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 8px;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: rgba(255,255,255,.05);
  border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: var(--primary-600);
}

.chat-message {
  display: flex;
  animation: fadeUp 0.4s var(--ease-out-expo);
}

.chat-message-received {
  justify-content: flex-start;
}

.chat-message-text {
  background: var(--surface);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 16px;
  max-width: 85%;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  border: 1px solid rgba(234,10,140,.1);
}

.chat-message:nth-child(2) {
  animation-delay: 0.1s;
}

.chat-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  animation: fadeUp 0.4s var(--ease-out-expo) 0.2s backwards;
}

.chat-action-btn {
  display: block;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  color: white;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-cubic);
  box-shadow: 0 6px 20px rgba(234,10,140,.3);
}

.chat-action-btn:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234,10,140,.4);
}

.chat-action-btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border: 1px solid rgba(234,10,140,.3);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.chat-action-btn-secondary:hover {
  background: var(--surface-2);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(234,10,140,.2);
}

/* Chat Input */
.chat-input-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(234,10,140,.2);
}

.chat-input {
  flex: 1;
  background: var(--surface);
  color: var(--text);
  border: 1px solid rgba(234,10,140,.2);
  border-radius: 20px;
  padding: 12px 16px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s var(--ease-out-cubic);
}

.chat-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234,10,140,.15);
  background: var(--surface-2);
}

.chat-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-cubic);
  box-shadow: 0 4px 12px rgba(234,10,140,.3);
  flex-shrink: 0;
}

.chat-send-btn:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(234,10,140,.4);
}

.chat-send-btn:active {
  transform: scale(0.95);
}

.chat-message-sent {
  justify-content: flex-end;
}

.chat-message-sent .chat-message-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  color: white;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  justify-content: flex-start;
  animation: fadeUp 0.3s var(--ease-out-expo);
}

.typing-indicator-content {
  background: var(--surface);
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  border: 1px solid rgba(234,10,140,.1);
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: typingDot 1.4s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {
  0%, 60%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  30% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Custom Form Validation */
.custom-validation-message {
  position: absolute;
  z-index: 10000;
  animation: popIn 0.3s var(--ease-out-expo);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.validation-content {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(234,10,140,.4), 0 0 20px rgba(234,10,140,.2);
  position: relative;
}

/* Arrow pointer */
.validation-content::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 24px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  transform: rotate(45deg);
  border-right: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
}

.validation-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.validation-text {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Team Page */
.team-headline {
  text-align: center;
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--primary);
}

.team-subheadline {
  text-align: center;
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.team-card {
  border: 1px solid rgba(234,10,140,.4);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s var(--ease-out-expo) backwards;
  height: 400px;
  transition: all 0.4s var(--ease-out-cubic);
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 25px 70px rgba(234,10,140,.3), 0 0 40px rgba(234,10,140,.1);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.4s var(--ease-out-cubic);
}

.team-card:hover .team-photo {
  opacity: 0.5;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-cubic);
  pointer-events: none;
  text-align: center;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-name {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.team-role {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

.team-bio {
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

.team-cta-section {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(234,10,140,.1), rgba(234,10,140,.05));
  border: 1px solid rgba(234,10,140,.3);
  border-radius: 20px;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.5s backwards;
}

.team-cta-headline {
  color: var(--primary);
  font-size: 2rem;
  margin: 0 0 16px 0;
  font-weight: 700;
}

.team-cta-text {
  color: var(--text);
  font-size: 1.2rem;
  margin: 0 0 32px 0;
}

@media (max-width: 640px) {
  .site-header .container {
    height: 80px;
    padding: 0 16px;
    justify-content: space-between;
  }
  
  .brand img {
    height: 60px !important;
  }
  
  .menu-wrapper {
    position: relative;
    right: 0;
    transform: none;
  }
  
  .aperture-icon {
    width: 40px;
    height: 40px;
  }
  
  .play-button-center img {
    width: 60px;
    height: 60px;
  }
  
  .chat-bubble {
    bottom: 24px;
    right: 24px;
  }
  
  .chat-bubble img {
    width: 56px;
    height: 56px;
  }
  
  .chat-popup {
    bottom: 95px;
    right: 20px;
    left: 20px;
    width: auto;
  }
  
  .grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-block; }
  .nav-links { position: absolute; top: 64px; right: 20px; background: var(--surface-2); border: 1px solid rgba(255,255,255,.1); padding: 12px; border-radius: 12px; display: none; flex-direction: column; gap: 10px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .site-footer .container { justify-content: center; }

  /* Our Story mobile fixes */
  .story-headline { align-items: center; text-align: center; }
  .story-headline .line2 { padding-left: 0; }
  .story-columns { grid-template-columns: 1fr; gap: 24px; }
  .story-column p { text-align: justify; }

  .services-grid { grid-template-columns: 1fr; }
  .phone-grid { grid-template-columns: 1fr; }
  .project-type-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .team-card { height: 350px; }
}
