:root {
  --linen: #FCF6F6;
  --blush: #F7ECEE;
  --espresso: #382D2E;
  --cocoa: #615152;
  --ash: #8E7E80;
  --rose: #C4747B;
  --crimson: #9E4D54;
  --rosegold: #E5C3C6;
  --gold: #C4747B;
}

*, ::before, ::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--linen);
  color: var(--espresso);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
p, label, .faq-body, .svc-lead {
  font-family: Inter, system-ui, sans-serif;
}
.font-serif { font-family: "Cormorant Garamond", Georgia, serif; }
.font-mono { font-family: "JetBrains Mono", ui-monospace, monospace; }
.font-sans { font-family: Inter, system-ui, sans-serif; }
.text-rose { color: var(--rose); }
.bg-linen { background: var(--linen); }

.site-nav-desktop {
  display: none;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .site-nav-desktop {
    display: flex !important;
  }
}
@media (min-width: 1280px) {
  .site-nav-desktop {
    gap: 1.25rem;
  }
}
.site-menu-btn {
  display: block;
}
@media (min-width: 1024px) {
  .site-menu-btn {
    display: none !important;
  }
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-thumb { background: #E5C3C6; border-radius: 999px; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee-slow {
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite;
}
.animate-marquee-slow:hover { animation-play-state: paused; }

.slide-marquee { overflow: hidden; width: 100%; }
.slide-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.slide-marquee-track.gallery-track {
  gap: 1rem;
  animation-duration: 32s;
}
.slide-marquee:hover .slide-marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .slide-marquee-track { animation: none; }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.animate-ping { animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-slide { opacity: 0; transition: opacity 1.5s ease; }
.hero-slide.active { opacity: 1; }

#mobile-drawer { display: none; }
#mobile-drawer.open { display: block; }
@media (min-width: 1024px) {
  #mobile-drawer { display: none !important; }
}
#back-top { display: none; }
#back-top.show { display: flex; }
#product-modal { display: none; }
#product-modal.open { display: flex; }
#product-modal:has(.port-pop) > div {
  max-width: min(96vw, 1080px);
  background: #fff;
}
#modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 50;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  background: #FCF6F6;
  border: 1px solid #E5C3C6;
  color: #382D2E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}
#modal-close:hover {
  background: #F7ECEE;
  border-color: #C4747B;
  transform: scale(1.06);
}
#modal-close:active {
  transform: scale(0.94);
}
.port-pop {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .port-pop {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }
}
.port-pop__slide {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  background: #F7ECEE;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.port-pop__slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 620px);
  object-fit: contain;
  display: block;
}
.port-pop__copy {
  flex: 0 1 280px;
  min-width: 0;
}
@media (min-width: 768px) {
  .port-pop__copy { flex-basis: 300px; }
}
.port-pop__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.92);
  color: #382D2E;
  cursor: pointer;
  font-size: 16px;
}
.port-pop__prev { left: 12px; }
.port-pop__next { right: 12px; }
.port-pop__count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  margin: 0;
  background: rgba(28,20,20,.7);
  color: #fff;
  font-size: 11px;
  letter-spacing: .12em;
  padding: 6px 10px;
  border-radius: 999px;
}
.faq-body { display: none; }
.faq-item.open .faq-body { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

header.scrolled {
  box-shadow: 0 8px 24px rgba(44, 36, 34, 0.06);
}
.top-bar { max-height: none; opacity: 1; overflow: visible; }
#main-header .top-bar > div {
  height: auto;
  min-height: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
}
#main-header .site-nav {
  padding-top: 10px;
  padding-bottom: 10px;
}
#main-header .site-nav > a {
  line-height: 0;
}
.social-links--header {
  line-height: 0;
  gap: 8px;
}
.social-links--header .social-svg { width: 18px; height: 18px; }
#main-header .site-logo {
  display: block;
  height: 70px;
  max-width: 240px;
}
@media (min-width: 768px) {
  #main-header .site-logo { height: 76px; }
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: #C4747B;
  border-radius: 8px;
  transition: transform 0.2s ease, color 0.2s ease, filter 0.2s ease;
}
.social-links a:hover { transform: translateY(-1px); color: #b06870; }
.social-svg { display: block; width: 22px; height: 22px; }
.social-links--footer {
  gap: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.social-links--footer .social-svg { width: 32px; height: 32px; }
.footer-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-services a:hover { color: #C4747B; }

.page-hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 9rem 24px 5rem;
  text-align: center;
  color: #fff;
}
.page-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
}
.page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
}
.page-hero__veil {
  position: absolute; inset: 0;
  background: rgba(28, 20, 20, 0.45);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.page-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  color: #E5C3C6;
  font-weight: 600;
  margin-bottom: 12px;
}
.page-hero__kicker i { display: block; width: 36px; height: 1px; background: #E5C3C6; }
.page-hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 14px;
}
.page-hero__crumbs {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.page-hero__crumbs a:hover { color: #fff; }
.page-hero__crumbs span { margin: 0 8px; color: #C4747B; }
.page-hero__crumbs strong { color: #C4747B; font-weight: 700; }
.page-hero__quote {
  position: absolute;
  right: 6%;
  bottom: 12%;
  z-index: 1;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-style: italic;
  max-width: 220px;
  line-height: 1.4;
}
.page-hero__quote .brand-mark {
  display: block;
  width: 26px;
  height: 26px;
  margin: 8px auto;
  color: #C4747B;
}

.brand-mark {
  display: block;
  width: 24px;
  height: 24px;
  color: #C4747B;
  flex-shrink: 0;
}
.brand-mark--light { color: #fff; }
.brand-mark--sm { width: 18px; height: 18px; }
.brand-mark--md { width: 28px; height: 28px; }
.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: #C4747B;
  color: #fff;
  box-shadow: 0 8px 16px rgba(196, 116, 123, 0.32);
  flex-shrink: 0;
}
.brand-badge .brand-mark { width: 24px; height: 24px; color: #fff; }
.brand-badge--sm { width: 2.5rem; height: 2.5rem; }
.brand-badge--sm .brand-mark { width: 20px; height: 20px; }
.brand-badge--overlap {
  position: absolute;
  left: 50%;
  bottom: -1.25rem;
  transform: translateX(-50%);
  z-index: 2;
}
.group:hover .brand-badge { background: #9E4D54; }
@media (max-width: 1024px) {
  .page-hero {
    min-height: 0;
    height: auto;
    padding: 5.75rem 24px 1.25rem;
  }
  .page-hero__bg img { object-position: top left; }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .page-hero {
    padding-top: 10.5rem;
    padding-bottom: 2.25rem;
  }
  .page-hero__title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin: 0;
    padding: 12px 0 16px;
  }
  .page-hero__kicker { margin-bottom: 0; }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .page-hero {
    padding-top: 12.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 640px) {
  .page-hero { padding: 5.5rem 20px 1.25rem; }
  .page-hero__title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .page-hero__quote { margin: 12px 0 0; font-size: 1rem; }
}
@media (max-width: 900px) {
  .page-hero__quote { position: static; margin: 16px 0 0; }
}

.site-link {
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #2C2422;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.site-link:hover { color: #C4747B; }
.site-link.is-on { color: #C4747B; }
.site-mail {
  position: relative;
  color: #2C2422;
  display: inline-flex;
}
.site-mail span {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #C4747B;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.site-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C4747B;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 999px;
  white-space: nowrap;
}
.site-quote:hover { background: #9E4D54; color: #fff; }
@media (max-width: 720px) {
  .site-quote { padding: 6px 10px; font-size: 10px; }
}

.nav-drop { position: relative; z-index: 90; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  max-height: 70vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #E5C3C6;
  border-radius: 16px;
  padding: 8px;
  margin-top: 0;
  box-shadow: 0 18px 40px rgba(56, 45, 46, 0.12);
  z-index: 95;
}
.nav-drop:hover > .nav-drop-menu {
  display: block;
}
.nav-drop-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #615152;
  font-weight: 600;
}
.nav-drop-menu a:hover { background: #F7ECEE; color: #C4747B; }

.whatsapp-fab {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}
.whatsapp-fab:hover { background: #1DA851; color: #fff; }
.whatsapp-fab .whatsapp-icon-img,
.whatsapp-icon-img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  display: block;
}
.whatsapp-fab .whatsapp-icon-img,
.whatsapp-fab img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.call-fab {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #C4747B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(196, 116, 123, 0.4);
}
.call-fab:hover { background: #9E4D54; color: #fff; }

#gal-page-grid .gal-item {
  height: 14rem;
}

.svc-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.svc-work-item {
  margin: 0;
  padding: 0;
  border: 1px solid #E5C3C6;
  border-radius: 1rem;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  height: 10.5rem;
}
.svc-work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.svc-work-item:hover img { transform: scale(1.05); }
@media (min-width: 768px) {
  .svc-work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .svc-work-item { height: 12.5rem; }
}
@media (min-width: 1024px) {
  .svc-work-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .svc-work-item { height: 13rem; }
}
@media (min-width: 500px) and (max-width: 1023px) {
  #gal-page-grid .gal-item {
    height: 22rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #gal-page-grid .gal-item {
    height: 24rem;
  }
}

@media (min-width: 500px) and (max-width: 1023px) {
  #services .svc-card-media {
    height: 12.5rem;
  }
}

.gal-lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(8,6,6,.94);
  display: grid; place-items: center; color: #fff;
}
.gal-lightbox[hidden] { display: none !important; }
.gal-lightbox figure { max-width: min(94vw, 1100px); margin: 0; padding: 0 56px; }
.gal-lightbox img { max-height: 78vh; width: 100%; object-fit: contain; display: block; }
.gal-lightbox figcaption {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  margin-top: 14px; letter-spacing: .12em; text-transform: uppercase; font-size: 11px; color: rgba(255,255,255,.8);
}
.gal-lightbox__close {
  position: absolute; top: 16px; right: 20px; background: none; border: 0; color: #fff;
  font-size: 28px; cursor: pointer; line-height: 1; z-index: 2;
}
.gal-lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.35); color: #fff; font-size: 20px; cursor: pointer; z-index: 2;
}
.gal-lightbox__prev { left: 16px; }
.gal-lightbox__next { right: 16px; }
@media (max-width: 720px) {
  .gal-lightbox figure { padding: 0 12px; }
  .gal-lightbox__prev { left: 8px; }
  .gal-lightbox__next { right: 8px; }
  .gal-lightbox__nav { width: 40px; height: 40px; }
}

.cine-cta {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: #1a1212;
}
.cine-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cine-cta__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 8, 8, .72), rgba(12, 8, 8, .35));
  pointer-events: none;
}
.cine-cta__copy {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 720px;
}
.cine-cta__copy .cine-h2,
.cine-cta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.cine-cta__copy p {
  color: rgba(255, 255, 255, .8);
  margin: 16px 0 28px;
  font-size: 1rem;
  line-height: 1.7;
}
.cine-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cine-cta .cine-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: #C4747B;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}
.cine-cta .cine-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
  box-shadow: none;
}
.cine-cta .cine-btn--ghost:hover {
  background: rgba(255, 255, 255, .1);
  box-shadow: none;
}

/* Shared Cinematic Testimonials / Quotes */
.cine-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.cine-quotes {
  padding: 60px 0 90px;
  background: #FDF8F6;
  position: relative;
}
.cine-quotes__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cine-quotes__head .cine-kicker {
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 700;
  color: #C4747B;
  margin-bottom: 10px;
}
.cine-quotes__head .cine-h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: #2C2422;
  margin: 0;
}
.cine-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #E5C3C6;
  background: #fff;
  color: #382D2E;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cine-icon-btn:hover {
  background: #C4747B;
  color: #fff;
  border-color: #C4747B;
}
.cine-quotes__view {
  overflow: hidden;
  width: 100%;
}
.cine-quotes__track {
  display: flex;
  gap: 20px;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}
.cine-quote {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: #fff;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid #F0E6E6;
  box-shadow: 0 10px 30px rgba(44, 36, 34, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cine-quote__stars {
  color: #C4747B;
  letter-spacing: 3px;
  font-size: 14px;
  margin: 0 0 16px;
}
.cine-quote__text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.65;
  color: #382D2E;
  margin: 0 0 24px;
  font-style: italic;
}
.cine-quote__who {
  display: flex;
  gap: 14px;
  align-items: center;
  border-top: 1px solid #F7ECEE;
  padding-top: 18px;
}
.cine-quote__who img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #F7ECEE;
  flex-shrink: 0;
}
.cine-quote__who strong {
  display: block;
  font-size: 0.95rem;
  color: #2C2422;
  font-weight: 700;
}
.cine-quote__who span {
  display: block;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #C4747B;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .cine-quote {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 720px) {
  .cine-quote {
    flex: 0 0 100%;
  }
  .cine-quotes__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
