/* ============================================================
   Urban Filmers - Premium Editorial Public Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #f7f3ed;
  --bg2: #fffaf3;
  --bg3: #eee7dd;
  --ink: #191815;
  --ink-soft: #4b4740;
  --muted: #746f67;
  --line: rgba(25, 24, 21, .12);
  --line-strong: rgba(25, 24, 21, .22);
  --paper: rgba(255, 252, 246, .82);
  --paper-solid: #fffaf3;
  --charcoal: #1d1c19;
  --gold: #9b7a43;
  --gold2: #b8975c;
  --gold-glow: rgba(155, 122, 67, .18);
  --gold-subtle: rgba(155, 122, 67, .08);
  --white: #fffaf3;
  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --r: 8px;
  --r-lg: 10px;

  --glass-bg: var(--paper);
  --glass-border: var(--line);
  --color-bg-primary: var(--bg);
  --color-bg-secondary: var(--bg2);
  --color-text-primary: var(--ink);
  --color-text-secondary: var(--muted);
  --color-accent: var(--gold);
  --font-body: var(--font-b);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    linear-gradient(90deg, rgba(25,24,21,.025) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-family: var(--font-h);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}
p { color: var(--muted); margin-bottom: 1rem; }
a { color: var(--gold); text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
a:hover { color: var(--charcoal); }
img { display: block; height: auto; max-width: 100%; }
main { background: var(--bg); }
::selection { background: var(--charcoal); color: var(--white); }

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
}

#loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  transition: opacity .55s var(--ease);
}
.loader-ring {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

#main-navbar {
  z-index: 1000;
  padding: 1.2rem 0;
  background: rgba(247, 243, 237, .72);
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
#main-navbar.scrolled {
  padding: .72rem 0;
  background: rgba(255, 250, 243, .9);
  border-color: var(--line);
  box-shadow: 0 14px 42px rgba(25, 24, 21, .07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.navbar-brand { display: flex; flex-direction: column; line-height: 1; }
.brand-text {
  color: var(--ink);
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 700;
}
.brand-sub {
  margin-top: .25rem;
  color: var(--gold);
  font-family: var(--font-b);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.nav-link {
  position: relative;
  color: rgba(25, 24, 21, .64) !important;
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  padding: .5rem .85rem !important;
  text-transform: uppercase;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .24rem;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--ink) !important; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  margin-left: .7rem;
  padding: .48rem 1.25rem !important;
  border: 1px solid var(--ink) !important;
  border-radius: 999px !important;
  color: var(--ink) !important;
}
.nav-cta:hover,
.nav-cta.active {
  background: var(--ink) !important;
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }
.navbar-toggler { border: 0; padding: .25rem; }
.navbar-toggler:focus { box-shadow: none; }
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; width: 25px; }
.hamburger-icon span { display: block; height: 1px; background: var(--ink); transition: transform .25s var(--ease); }

.section,
.about-scene,
.services-scene,
.portfolio-scene,
.workflow-scene,
.why-scene,
.testimonials-scene,
.portfolio-section {
  position: relative;
  padding: clamp(5rem, 8vw, 8.5rem) 0;
  overflow: hidden;
}
.section { background: var(--bg); }
.about-scene,
.portfolio-scene,
.why-scene,
.testimonials-scene { background: var(--bg2); }
.services-scene,
.workflow-scene,
.portfolio-section { background: var(--bg); }

.section-label,
.hero-eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--font-b);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.section-heading {
  margin-bottom: .7rem;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}
.section-heading em,
.hero-title em,
.cta-scene em {
  color: var(--gold);
  font-style: italic;
}
.accent-line {
  width: 54px;
  height: 1px;
  margin: 1.15rem 0 2rem;
  background: var(--ink);
}
.accent-line.centered { margin-left: auto; margin-right: auto; }
.about-scene-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgba(25, 24, 21, .045);
  font-family: var(--font-h);
  font-size: clamp(7rem, 16vw, 13rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .4s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .85s var(--ease) forwards; }
.fade-in-up-delay-1 { animation: fadeInUp .85s .14s var(--ease) both; }
.fade-in-up-delay-2 { animation: fadeInUp .85s .26s var(--ease) both; }
.fade-in-up-delay-3 { animation: fadeInUp .85s .38s var(--ease) both; }

.btn-gold,
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .84rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-b);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-gold {
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}
.btn-gold-outline {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}
.btn-gold:hover,
.btn-gold-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(25, 24, 21, .13);
}
.btn-gold:hover { color: var(--white); background: #050504; }
.btn-gold-outline:hover { color: var(--white); border-color: var(--charcoal); background: var(--charcoal); }

.hero-section {
  position: relative;
  min-height: 760px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg2);
}
.hero-section::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 7.8rem clamp(1rem, 4vw, 4rem) 3rem;
  z-index: 1;
  border-radius: 10px;
  border: 1px solid rgba(255, 250, 243, .25);
  background:
    linear-gradient(180deg, rgba(25,24,21,.12), rgba(25,24,21,.52)),
    linear-gradient(120deg, rgba(247,243,237,.55), rgba(155,122,67,.14) 34%, rgba(25,24,21,.08));
  box-shadow: inset 0 0 0 1px rgba(25,24,21,.08), 0 35px 90px rgba(25,24,21,.12);
}
.hero-video-bg {
  position: absolute;
  inset: 7.8rem clamp(1rem, 4vw, 4rem) 3rem;
  z-index: 0;
  width: auto;
  height: auto;
  min-width: calc(100% - clamp(2rem, 8vw, 8rem));
  min-height: calc(100% - 10.8rem);
  object-fit: cover;
  border-radius: 10px;
  opacity: .76;
  filter: saturate(.72) contrast(.96);
}
.hero-gradient-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(155,122,67,.16), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(25,24,21,.08), transparent 30%),
    linear-gradient(135deg, var(--bg2), var(--bg));
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(247,243,237,.2), rgba(247,243,237,.34) 58%, var(--bg) 100%);
}
.hero-particles { display: none; }
.hero-content {
  position: relative;
  z-index: 3;
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.hero-title {
  margin-bottom: 1.35rem;
  color: var(--ink);
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 600;
}
.hero-subtitle {
  max-width: 650px;
  margin: 0 auto 2.6rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  font-weight: 300;
  line-height: 1.8;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.hero-scroll-hint {
  position: absolute;
  bottom: 1.65rem;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  align-items: center;
  color: rgba(25,24,21,.55);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.page-hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg2);
}
.page-hero::before { inset: 7rem clamp(1rem, 4vw, 4rem) 2rem; }
.page-hero .hero-title { font-size: clamp(3.3rem, 8vw, 7rem); }

.about-feature-card,
.why-card,
.testimonial-card,
.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  box-shadow: 0 20px 55px rgba(25, 24, 21, .06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.about-feature-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.25rem 1.35rem;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.about-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 62px rgba(25, 24, 21, .1);
}
.about-feature-card .text-white,
.about-feature-card .fw-semibold { color: var(--ink) !important; }
.about-feature-card .small,
.about-feature-card div[style*="color:var(--color-text-secondary)"],
.about-feature-card a { color: var(--muted) !important; }
.about-feature-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.75rem;
}

.service-accordion { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.service-item {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .3s var(--ease);
}
.service-item-header {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 1.55rem .25rem;
}
.service-item-num {
  min-width: 2rem;
  color: var(--gold);
  font-family: var(--font-h);
  font-size: 1.05rem;
}
.service-item-icon { color: var(--gold); font-size: 1.35rem; }
.service-item-title {
  flex: 1;
  color: var(--ink);
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 600;
}
.service-item-arrow { color: var(--ink); opacity: .34; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.service-item-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 3rem 0 4.7rem;
  transition: max-height .45s var(--ease), padding .35s var(--ease);
}
.service-item-body p { max-width: 620px; font-size: .98rem; }
.service-item.active,
.service-item:hover { background: rgba(155, 122, 67, .045); }
.service-item.active .service-item-arrow,
.service-item:hover .service-item-arrow { opacity: 1; transform: translateX(4px); }
.service-item.active .service-item-body {
  max-height: 220px;
  padding-bottom: 1.45rem;
}

.service-detail-row {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
}
.service-detail-row:last-child { border-bottom: 0; }
.service-detail-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg3);
  box-shadow: 0 28px 70px rgba(25, 24, 21, .09);
}
.service-detail-image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  filter: saturate(.82);
  transition: transform .7s var(--ease);
}
.service-detail-image:hover img { transform: scale(1.035); }

.masonry-grid { columns: 3; column-gap: 1rem; }
.masonry-item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg3);
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), opacity .3s var(--ease);
}
.masonry-item:nth-child(3n+2) { margin-top: 2.2rem; }
.masonry-item:nth-child(3n+3) { margin-top: .9rem; }
.masonry-item:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 70px rgba(25, 24, 21, .14);
}
.masonry-thumb {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(.78) contrast(.96);
  transition: transform .7s var(--ease), filter .7s var(--ease);
}
.masonry-item:hover .masonry-thumb {
  transform: scale(1.04);
  filter: saturate(.92) contrast(1);
}
.masonry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem;
  color: var(--white);
  background: linear-gradient(180deg, rgba(25,24,21,0) 22%, rgba(25,24,21,.74) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-play {
  width: 46px;
  height: 46px;
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,250,243,.75);
  border-radius: 999px;
  background: rgba(255,250,243,.12);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.masonry-title {
  color: var(--white);
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.12;
}
.masonry-cat {
  margin-top: .35rem;
  color: rgba(255,250,243,.72);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 3rem;
}
.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--font-b);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: .55rem 1rem;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}

.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  display: flex;
  gap: 1.7rem;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg2);
  color: var(--gold);
  font-family: var(--font-h);
  font-size: 1.15rem;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.timeline-item.tl-active .timeline-dot,
.timeline-item:hover .timeline-dot {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}
.timeline-content { padding-top: .6rem; }
.timeline-content h4 { margin-bottom: .55rem; font-size: 1.55rem; }
.timeline-content p { max-width: 650px; font-size: .96rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.why-card {
  padding: 1.65rem;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 25px 64px rgba(25,24,21,.1);
}
.why-card-icon { margin-bottom: 1.25rem; color: var(--gold); font-size: 1.85rem; }
.why-card h4 { margin-bottom: .7rem; font-size: 1.45rem; }
.why-card p { margin: 0; font-size: .92rem; }

.testimonial-card { height: 100%; padding: 2rem; }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: .25rem;
  left: 1.25rem;
  color: rgba(155,122,67,.14);
  font-family: var(--font-h);
  font-size: 5rem;
  line-height: 1;
}
.testimonial-content {
  position: relative;
  z-index: 1;
  margin-bottom: 1.7rem;
  color: var(--ink-soft);
  font-size: .96rem;
}
.testimonial-author { display: flex; align-items: center; gap: .9rem; }
.testimonial-avatar,
.testimonial-avatar-placeholder {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.testimonial-avatar { object-fit: cover; }
.testimonial-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: var(--bg);
}
.testimonial-name { color: var(--ink); font-family: var(--font-h); font-size: 1.15rem; font-weight: 600; }
.testimonial-role { color: var(--gold); font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.carousel-control-prev-icon,
.carousel-control-next-icon { filter: invert(1); }

.cta-scene {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 9vw, 9rem) 0;
  background: var(--charcoal);
  text-align: center;
}
.cta-scene::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255,250,243,.12);
  border-radius: var(--r);
}
.cta-scene h2 {
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5rem);
}
.cta-scene p {
  max-width: 560px;
  margin: 1rem auto 2.5rem;
  color: rgba(255,250,243,.68);
  font-size: 1.05rem;
}
.cta-scene .btn-gold {
  border-color: var(--white);
  background: var(--white);
  color: var(--charcoal);
}
.cta-scene .btn-gold:hover {
  background: transparent;
  color: var(--white);
}

.contact-form-input {
  border: 1px solid var(--line) !important;
  border-radius: var(--r) !important;
  background: rgba(255,250,243,.72) !important;
  color: var(--ink) !important;
  font-family: var(--font-b) !important;
  font-size: .95rem !important;
  padding: .9rem 1rem !important;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease) !important;
}
.contact-form-input:focus {
  border-color: var(--gold) !important;
  background: var(--paper-solid) !important;
  box-shadow: 0 0 0 4px rgba(155,122,67,.12) !important;
  outline: none !important;
}
.contact-form-input::placeholder { color: rgba(25,24,21,.36) !important; }
.contact-form-input option { background: var(--paper-solid); color: var(--ink); }
.form-label-premium {
  display: block;
  margin-bottom: .5rem;
  color: var(--ink-soft);
  font-family: var(--font-b);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.invalid-feedback { color: #9a3d2f; }
.is-invalid { border-color: #9a3d2f !important; }

.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(25,24,21,.88);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition: opacity .3s var(--ease);
}
.video-modal-overlay.active { opacity: 1; pointer-events: auto; }
.video-modal-container { position: relative; width: min(980px, 94vw); }
.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  opacity: .78;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.video-modal-close:hover { opacity: 1; transform: rotate(90deg); }
.video-responsive {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  border-radius: var(--r);
  background: #000;
  box-shadow: 0 35px 90px rgba(0,0,0,.42);
}
.video-responsive iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.site-footer {
  position: relative;
  padding: 5rem 0 0;
  border-top: 1px solid var(--line);
  background: var(--bg2);
}
.footer-brand h3 {
  margin-bottom: .8rem;
  color: var(--ink);
  font-size: 1.8rem;
}
.footer-brand p { color: var(--muted) !important; }
.footer-socials {
  display: flex;
  gap: .8rem;
  margin-top: 1.1rem;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.footer-socials a:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-heading {
  margin-bottom: 1.35rem;
  color: var(--gold);
  font-family: var(--font-b);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-links,
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .62rem; }
.footer-links a {
  display: inline-block;
  color: var(--muted);
  font-size: .92rem;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.footer-links a:hover { color: var(--ink); transform: translateX(4px); }
.footer-contact li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .85rem;
  color: var(--muted);
  font-size: .92rem;
}
.footer-contact i { color: var(--gold); margin-top: .16rem; }
.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.45rem 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: rgba(25,24,21,.48);
  font-size: .76rem;
  letter-spacing: .08em;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: .9rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: rgba(255,250,243,.96);
    box-shadow: 0 20px 50px rgba(25,24,21,.1);
  }
  .nav-cta { margin-left: .85rem; width: fit-content; }
  .masonry-grid { columns: 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-scene .col-lg-4[style*="sticky"],
  .workflow-scene .col-lg-4[style*="sticky"] { position: static !important; }
}

@media (max-width: 767.98px) {
  .hero-section { min-height: 690px; }
  .hero-section::before,
  .hero-video-bg { inset: 6.8rem .75rem 2.8rem; }
  .hero-title { font-size: clamp(3.15rem, 17vw, 4.8rem); }
  .hero-subtitle { font-size: .98rem; }
  .hero-cta-group { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto; }
  .page-hero { min-height: 410px; }
  .page-hero::before { inset: 6.4rem .75rem 1.5rem; }
  .service-item-header { gap: .85rem; padding: 1.35rem 0; }
  .service-item-icon { display: none; }
  .service-item-body { padding-left: 3rem; padding-right: .25rem; }
  .service-detail-image img { height: 250px; }
  .timeline::before { left: 23px; }
  .timeline-dot { width: 46px; height: 46px; font-size: .95rem; }
  .timeline-item { gap: 1.1rem; }
}

@media (max-width: 575.98px) {
  .masonry-grid { columns: 1; }
  .masonry-item:nth-child(n) { margin-top: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .about-feature-card { align-items: flex-start; padding: 1rem; }
  .filter-bar { justify-content: center; }
  .btn-gold,
  .btn-gold-outline { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}
