:root {
  --plum: #5B2A6D;
  --peach: #F6C7B6;
  --cream: #FFF7EF;
  --brown: #2B1E1E;
  --gold: #D9A441;
  --white: #FFFFFF;
  --soft: #FFF1E8;
  --border: rgba(91, 42, 109, 0.15);
  --shadow: 0 22px 70px rgba(91, 42, 109, 0.13);
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Poppins", "Inter", "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--sans);
  overflow-x: hidden;
  max-width: 100%;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 110px 0; position: relative; }
.section-heading { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-label, .eyebrow {
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--serif); line-height: 1.02; margin: 0; }
h1, h2, h3, p, a, button { overflow-wrap: break-word; }
h2 { font-size: clamp(1.9rem, 3.4vw, 3.25rem); color: var(--plum); }
h3 { font-size: 1.32rem; }
p { line-height: 1.72; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100vw;
  z-index: 1000;
  transition: transform 0.35s ease;
}
.navbar {
  width: min(1240px, calc(100% - 48px));
  margin: 16px auto 0;
  min-height: 60px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 14px;
  border: 1px solid rgba(255, 247, 239, 0.24);
  border-radius: 16px;
  background: rgba(255, 247, 239, 0.82);
  box-shadow: 0 10px 40px rgba(43, 30, 30, 0.08);
  backdrop-filter: blur(18px);
  transition: all 0.35s ease;
}
.site-header.scrolled .navbar {
  min-height: 56px;
  border-color: var(--border);
  background: rgba(255, 247, 239, 0.9);
  box-shadow: 0 12px 45px rgba(43, 30, 30, 0.11);
  backdrop-filter: blur(18px);
}
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; color: var(--plum); }
.brand img, .footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(217, 164, 65, 0.55);
}
.nav-panel { display: flex; align-items: center; gap: 22px; }
.nav-link {
  color: var(--plum);
  font-size: 0.86rem;
  font-weight: 600;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.nav-cta {
  color: var(--brown);
  background: var(--gold);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(217, 164, 65, 0.3);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  place-items: center;
  padding: 12px;
  flex: 0 0 46px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--plum);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  padding: 118px 20px 54px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 247, 239, 0.08) 49%, transparent 56%),
    radial-gradient(circle at 18% 78%, rgba(217, 164, 65, 0.18), transparent 30%);
  background-size: 190% 100%, 100% 100%;
  animation: studioSweep 9s ease-in-out infinite;
}
.hero-video, .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  transform: scale(1.04);
  animation: slowZoom 22s ease-in-out infinite alternate;
}
.hero-fallback {
  background: url("assets/gallery/project-3.jpg") center/cover;
  z-index: -5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 28%, rgba(246, 199, 182, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(43, 30, 30, 0.86) 0%, rgba(91, 42, 109, 0.68) 45%, rgba(43, 30, 30, 0.3) 100%),
    linear-gradient(180deg, rgba(43, 30, 30, 0.22), rgba(43, 30, 30, 0.66));
  backdrop-filter: blur(0.5px);
}
.hero-content {
  width: min(1180px, calc(100% - 40px));
  max-width: 1180px;
  min-width: 0;
  text-align: left;
  margin: 0 auto;
}
.hero-title {
  color: var(--cream);
  font-size: clamp(2.6rem, 4.8vw, 5.35rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 18px 0 24px;
  max-width: 760px;
}
.title-line {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0;
  background: none;
  background-size: auto;
  background-repeat: initial;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: none;
}
.mobile-title-break { display: inline; }
.hero-loaded .title-line { background-size: auto; }
.hero-copy {
  max-width: 590px;
  margin: 0;
  font-size: clamp(0.96rem, 1.04vw, 1.04rem);
  color: rgba(255, 247, 239, 0.84);
}
.hero-actions, .contact-actions { display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(91, 42, 109, 0.18); }
.btn-primary { background: var(--gold); color: var(--brown); }
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -65%;
  width: 45%;
  transform: skewX(-18deg);
  background: rgba(255, 255, 255, 0.42);
}
.btn-primary:hover::after { animation: shine 0.75s ease; }
.btn-secondary { background: rgba(255, 247, 239, 0.12); color: var(--cream); border-color: rgba(255, 247, 239, 0.32); }
.btn-light { background: var(--white); color: var(--plum); border-color: var(--border); }
.whatsapp-pulse { animation: subtlePulse 2.8s ease-in-out infinite; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 36px 0 0;
  max-width: 720px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 247, 239, 0.22);
}
.hero-stats span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 247, 239, 0.74);
  backdrop-filter: none;
  transition: transform 0.3s ease, background 0.3s ease;
}
.hero-stats span:hover { transform: translateY(-3px); background: transparent; }
.hero-stats strong { display: block; color: var(--gold); font-size: 0.95rem; }
.hero-scroll {
  position: absolute;
  right: max(32px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 247, 239, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
.shape {
  position: absolute;
  z-index: -2;
  border-radius: 42% 58% 45% 55%;
  display: none;
  filter: blur(1px);
  animation: floatShape 7s ease-in-out infinite;
}
.shape-one { width: 132px; height: 132px; background: var(--peach); left: 7%; top: 30%; }
.shape-two { width: 82px; height: 82px; background: rgba(217, 164, 65, 0.58); right: 12%; top: 25%; animation-delay: 1s; }
.shape-three { width: 170px; height: 98px; background: rgba(91, 42, 109, 0.16); right: 16%; bottom: 17%; animation-delay: 1.8s; }
.line-shape {
  position: absolute;
  left: 15%;
  bottom: 18%;
  width: 170px;
  height: 74px;
  border: 2px solid rgba(91, 42, 109, 0.25);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
  transform: rotate(-19deg);
}

.marquee-zone {
  background: var(--cream);
  padding: 12px 0 24px;
  overflow: hidden;
  border-top: 1px solid rgba(91, 42, 109, 0.08);
  border-bottom: 1px solid rgba(91, 42, 109, 0.08);
}
.text-marquee, .image-marquee { overflow: hidden; }
.marquee-track, .image-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: marqueeLeft 24s linear infinite;
}
.marquee-track span {
  color: var(--plum);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.text-marquee:hover .marquee-track, .image-marquee:hover .image-track, .project-carousel-wrap:hover .project-carousel { animation-play-state: paused; }
.image-marquee { margin-top: 14px; }
.image-track img {
  width: clamp(140px, 14vw, 210px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(43, 30, 30, 0.08);
}
.image-marquee-right { display: none; }
.image-track.reverse { animation: marqueeRight 30s linear infinite; }

.about { background: linear-gradient(180deg, var(--cream), #fff); }
.about-grid, .classes-grid, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 70px;
  align-items: center;
}
.about-copy p:not(.section-label), .classes-copy p, .contact-copy p { font-size: 1.04rem; }
.section-heading p { max-width: 620px; margin-left: auto; margin-right: auto; }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.mini-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(91, 42, 109, 0.08);
  color: var(--plum);
  font-weight: 800;
}
.collage {
  min-height: 590px;
  position: relative;
  transform-style: preserve-3d;
}
.collage img {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255, 255, 255, 0.72);
  transition: transform 0.45s ease;
}
.collage-main { width: 70%; aspect-ratio: 3/4; right: 8%; top: 5%; }
.collage-top { width: 45%; aspect-ratio: 1; left: 2%; top: 12%; }
.collage-bottom { width: 48%; aspect-ratio: 4/3; left: 13%; bottom: 6%; }
.collage:hover .collage-main { transform: translate3d(10px, -12px, 0) rotate(1.5deg); }
.collage:hover .collage-top { transform: translate3d(-10px, 10px, 0) rotate(-2deg); }
.collage:hover .collage-bottom { transform: translate3d(8px, 12px, 0) rotate(2deg); }

.services { background: var(--soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  min-height: 285px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(91, 42, 109, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(217, 164, 65, 0.85);
  box-shadow: 0 28px 70px rgba(91, 42, 109, 0.15);
}
.service-card > span { color: rgba(91, 42, 109, 0.38); font-weight: 800; }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 24px 0;
  color: var(--plum);
  background: var(--soft);
  border-radius: 16px;
  font-size: 1.5rem;
  transition: transform 0.35s ease;
}
.service-card:hover .service-icon { transform: rotate(10deg) translateY(-2px); }
.service-card h3 { color: var(--plum); }
.service-card p { margin-bottom: 0; }

.projects { background: var(--cream); overflow: hidden; }
.filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.filter-btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--plum);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.filter-btn:hover, .filter-btn.active { background: var(--plum); color: var(--white); transform: translateY(-2px); }
.project-carousel-wrap {
  width: 100%;
  overflow-x: auto;
  padding: 8px 0 28px;
  scrollbar-width: none;
}
.project-carousel-wrap::-webkit-scrollbar { display: none; }
.project-carousel {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  animation: projectSlide 46s linear infinite;
}
.project-card {
  width: min(390px, 82vw);
  aspect-ratio: 0.78;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.project-card.is-hidden { display: none; }
.project-card:hover { transform: translateY(-10px); }
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: auto 18px 18px;
  padding: 22px;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(91, 42, 109, 0.62), rgba(43, 30, 30, 0.86));
  transform: translateY(18px);
  opacity: 0;
  transition: all 0.3s ease;
}
.project-card:hover .project-overlay { opacity: 1; transform: translateY(0); }
.project-overlay span { color: var(--peach); font-weight: 800; font-size: 0.78rem; text-transform: uppercase; }
.project-overlay h3 { margin: 7px 0 14px; }
.project-overlay a { color: var(--gold); font-weight: 800; }

.gallery-section { background: #fff; }
.gallery-grid {
  columns: 3 260px;
  column-gap: 18px;
}
.gallery-item {
  width: 100%;
  display: block;
  padding: 0;
  margin: 0 0 18px;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: 0 15px 45px rgba(91, 42, 109, 0.09);
  cursor: zoom-in;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.gallery-item.filtering-out { opacity: 0; transform: scale(0.94); pointer-events: none; }
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.videos { background: var(--cream); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  padding-bottom: 20px;
}
.video-card video {
  width: 100%;
  aspect-ratio: 9/13;
  object-fit: cover;
  background: var(--soft);
}
.video-card span, .video-card h3 { margin-left: 18px; margin-right: 18px; }
.video-card span {
  display: inline-block;
  color: var(--plum);
  font-weight: 800;
  font-size: 0.78rem;
  margin-top: 16px;
}
.video-card h3 { color: var(--plum); margin-top: 5px; }
.video-play {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--plum);
  cursor: pointer;
}

.classes {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.7), transparent 28%),
    var(--peach);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 12px;
}
.feature-list li {
  padding-left: 32px;
  position: relative;
  font-weight: 700;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--plum);
  font-weight: 900;
}
.class-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.class-cards img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
  animation: cardFloat 5s ease-in-out infinite;
}
.class-cards img:nth-child(4), .class-cards img:nth-child(7) { transform: translateY(32px); animation-delay: 0.8s; }
.class-badge {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--plum);
  font-weight: 800;
  box-shadow: var(--shadow);
}
.badge-one { left: -22px; top: 20px; }
.badge-two { right: 10px; bottom: -14px; }

.reviews { background: var(--soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}
.review-shot, .testimonial-card {
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
.review-shot {
  grid-column: span 2;
  aspect-ratio: 0.78;
}
.review-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f5f1ea;
}
.testimonial-card {
  padding: 24px;
  min-height: 210px;
  transition: transform 0.25s ease;
}
.testimonial-card:hover, .review-shot:hover { transform: translateY(-6px); }
.quote-mark { font-family: var(--serif); color: var(--gold); font-size: 3rem; line-height: 0.8; }
.stars { color: var(--gold); letter-spacing: 0; }

.contact {
  background:
    radial-gradient(circle at 90% 8%, rgba(246, 199, 182, 0.8), transparent 28%),
    var(--cream);
}
.contact .btn-secondary {
  background: var(--plum);
  color: var(--white);
  border-color: transparent;
}
.contact .btn-light {
  background: var(--white);
  color: var(--plum);
  border-color: var(--border);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.info-grid div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}
.info-grid span { display: block; color: var(--plum); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.info-grid strong { display: block; margin-top: 5px; }
.contact-form {
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--plum); font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--soft);
  color: var(--brown);
  padding: 14px 15px;
  outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.15); }
.contact-form .btn { width: 100%; border: 0; }

.site-footer { background: var(--plum); color: rgba(255,255,255,0.78); padding: 70px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}
.footer-brand { color: var(--white); }
.footer-grid h3 { color: var(--peach); font-size: 1.2rem; margin-bottom: 16px; }
.footer-grid a { display: block; margin: 10px 0; transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 46px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  text-align: center;
  font-size: 0.88rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 22px;
  background: rgba(43, 30, 30, 0.88);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-height: 84vh;
  max-width: min(1080px, 92vw);
  border-radius: 22px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.35);
}
.lightbox button {
  position: absolute;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--plum);
  cursor: pointer;
  font-size: 2rem;
}
.lightbox-close { top: 24px; right: 24px; width: 48px; height: 48px; }
.lightbox-prev, .lightbox-next { top: 50%; width: 54px; height: 54px; transform: translateY(-50%); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.2), transparent 68%);
  pointer-events: none;
  opacity: 0;
  z-index: 1500;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  mix-blend-mode: multiply;
}
.cursor-glow.is-visible { opacity: 1; }
.cursor-glow.is-large { width: 320px; height: 320px; }

.reveal, .reveal-left, .reveal-right, .reveal-scale, .hero-animate, .reveal-nav {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(.19,1,.22,1), transform 0.9s cubic-bezier(.19,1,.22,1);
  transition-delay: var(--delay, 0ms);
}
.reveal, .hero-animate, .reveal-nav { transform: translateY(34px); }
.reveal-left { transform: translateX(-30px) translateY(18px); }
.reveal-right { transform: translateX(30px) translateY(18px); }
.reveal-scale { transform: scale(0.96) translateY(16px); }
.is-visible .reveal, .is-visible.reveal, .is-visible .reveal-left, .is-visible.reveal-left,
.is-visible .reveal-right, .is-visible.reveal-right, .is-visible .reveal-scale, .is-visible.reveal-scale,
.hero-loaded .hero-animate, .hero-loaded .reveal-nav {
  opacity: 1;
  transform: none;
}
.hero-animate:nth-child(2) { transition-delay: 120ms; }
.hero-animate:nth-child(3) { transition-delay: 240ms; }
.hero-animate:nth-child(4) { transition-delay: 360ms; }
.hero-animate:nth-child(5) { transition-delay: 480ms; }

@keyframes slowZoom { from { transform: scale(1.06) translateY(0); } to { transform: scale(1.13) translateY(-18px); } }
@keyframes studioSweep {
  0%, 100% { background-position: 125% 0, center; opacity: 0.42; }
  50% { background-position: -40% 0, center; opacity: 0.78; }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.45); transform-origin: top; opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}
@keyframes floatShape { 0%,100% { transform: translate3d(0,0,0) rotate(0deg); } 50% { transform: translate3d(10px,-18px,0) rotate(8deg); } }
@keyframes shine { to { left: 120%; } }
@keyframes subtlePulse { 0%,100% { box-shadow: 0 0 0 rgba(217,164,65,0); } 50% { box-shadow: 0 0 0 8px rgba(217,164,65,0.12); } }
@keyframes marqueeLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes projectSlide { from { transform: translateX(0); } to { transform: translateX(-42%); } }
@keyframes cardFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 86vw);
    height: 100svh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 36px;
    gap: 22px;
    background: rgba(255, 247, 239, 0.96);
    box-shadow: -18px 0 60px rgba(91,42,109,0.16);
    transform: translateX(105%);
    transition: transform 0.35s ease;
    backdrop-filter: blur(18px);
  }
  .nav-panel.open { transform: translateX(0); }
  .nav-link { font-size: 1.15rem; }
  .nav-cta { width: 100%; text-align: center; }
  .hero-content { text-align: center; }
  .hero-title, .hero-copy { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin-left: auto; margin-right: auto; }
  .hero-scroll { display: none; }
  .about-grid, .classes-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-shot { grid-column: span 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1180px); }
  .section-pad { padding: 76px 0; }
  .navbar { width: calc(100% - 20px); min-height: 66px; padding: 0 12px; }
  .navbar {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin-top: 12px;
    min-height: 58px;
    padding: 0 68px 0 14px;
    border-radius: 18px;
  }
  .menu-toggle {
    position: fixed;
    top: 24px;
    right: auto;
    left: clamp(282px, calc(100vw - 74px), 316px);
    transform: none;
    display: grid !important;
    width: 44px;
    height: 44px;
    padding: 10px;
    z-index: 5000;
    background: rgba(255, 247, 239, 0.92);
    box-shadow: 0 10px 24px rgba(43, 30, 30, 0.14);
  }
  .menu-toggle.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .brand span { font-size: 0.98rem; }
  .brand img { width: 38px; height: 38px; }
  .hero { min-height: 92svh; padding-top: 110px; }
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-video {
    display: none;
  }
  .hero-fallback {
    z-index: -4;
    background-image: url("assets/gallery/project-10.jpg");
    background-position: center;
    background-size: cover;
  }
  .hero-overlay {
    background:
      radial-gradient(circle at 20% 18%, rgba(246, 199, 182, 0.18), transparent 34%),
      linear-gradient(180deg, rgba(43, 30, 30, 0.7), rgba(91, 42, 109, 0.68) 48%, rgba(43, 30, 30, 0.72));
    backdrop-filter: blur(0.5px);
  }
  .hero-content { text-align: center; }
  .hero-content {
    width: min(300px, calc(100% - 42px));
    max-width: 300px;
    min-width: 0;
    padding-inline: 0;
  }
  .eyebrow {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.66rem;
    line-height: 1.55;
    letter-spacing: 0.04em;
    white-space: normal;
  }
  .hero-title {
    font-size: clamp(1.75rem, 6.7vw, 2.15rem);
    line-height: 1.04;
    max-width: 100%;
  }
  .title-line { width: 100%; }
  .mobile-title-break { display: block; }
  .hero-copy { font-size: 0.84rem; }
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn {
    width: min(100%, 270px);
    margin-inline: auto;
  }
  .hero-stats { display: none; }
  .shape-one { left: -34px; }
  .shape-two { right: -20px; }
  .highlight-grid, .info-grid { grid-template-columns: 1fr; }
  .collage { min-height: 430px; }
  .services-grid, .video-grid, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .project-carousel { animation: none; padding: 0 14px; }
  .project-card { width: 82vw; }
  .gallery-grid { columns: 2 150px; column-gap: 12px; }
  .gallery-item { margin-bottom: 12px; border-radius: 16px; }
  .class-cards { grid-template-columns: repeat(2, 1fr); }
  .badge-one { left: 4px; top: -18px; }
  .badge-two { right: 4px; bottom: -18px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
