@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: 'Michigan Signature';
  src: url('../fonts/Michigan-Signature.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'Parkinsans';
  src: url('../fonts/Parkinsans-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Parkinsans';
  src: url('../fonts/Parkinsans-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Parkinsans';
  src: url('../fonts/Parkinsans-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Parkinsans';
  src: url('../fonts/Parkinsans-SemiBold.ttf') format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'Goga Test';
  src: url('../fonts/GogaTest-Regular.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'Goga Test';
  src: url('../fonts/GogaTest-Medium.otf') format('opentype');
  font-weight: 500;
}

@font-face {
  font-family: 'Goga Test';
  src: url('../fonts/GogaTest-Semibold.otf') format('opentype');
  font-weight: 600;
}

:root {
  --black: #111111;
  --white: #ffffff;
  --gray-bg: #EFEFEF;
  --gray-text: #8a8a86;
  --border: #e7e7e4;
  --font-parkinsans: "Parkinsans";
  --font-goga: "Goga Test";
  --font-inter: "Inter", sans-serif
}

.logo img {
  height: 37px;
}

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.is-stuck,
.navbar.menu-open {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo svg {
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-parkinsans);
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  letter-spacing: 0%;
  text-transform: capitalize;
  background: var(--gray-bg);
  color: var(--black);
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.time-pill svg {
  width: 17px;
  height: 17px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #F5F5F7;
  border-radius: 999px;
  padding: 6px;
}

.nav-links a {
  text-decoration: none;
  padding: 9px 16px;
  font-family: 'Parkinsans';
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0%;
  border-radius: 999px;
  color: #000000;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}

.nav-links a.disabled {
  color: var(--gray-text);
  font-weight: 500;
  pointer-events: none;
}

.nav-links a:not(.disabled):hover {
  background: rgba(0, 0, 0, 0.06);
}

.book-cta-btn {
  background: #000;
  color: var(--white) !important;
  font-family: var(--font-parkinsans);
  font-weight: 700;
  font-size: 11px !important;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  padding: 14px 20px !important;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s ease, transform .15s ease;
}
.book-cta-btn:hover{
	background:#FC2600;
}
.cta-btn:hover {
  background: #2b2b2b;
}

.cta-btn:active {
  transform: scale(0.97);
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--gray-bg);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease, top .25s ease;
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 24px; }

.hamburger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid transparent;
  transition: max-height .3s ease, border-color .3s ease;
}

.mobile-menu.is-open {
  max-height: 320px;
  border-top: 1px solid var(--border);
}

.mobile-menu-inner {
  padding: 16px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-inner a {
  text-decoration: none;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 4px;
  font-family: var(--font-parkinsans);
  border-bottom: 1px solid var(--border);
}

.mobile-menu-inner a.disabled {
  color: var(--gray-text);
  font-weight: 500;
}

.mobile-menu-inner .cta-btn {
  margin-top: 14px;
  width: 100%;
  padding: 14px 18px;
  text-align: center;
}

@media (max-width: 900px) {
  .nav-inner { padding: 14px 20px; }
  .clients-heading { font-size: 30px !important; }
  p.clients_para { font-size: 18px !important; }
  .nav-links, .nav-right>.cta-btn { display: none; }
  .hamburger { display: flex; }
  .time-pill { font-size: 12px; padding: 8px 12px; }
  .mobile-menu { display: block; }
}

.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 40px 64px;
  color: #000;
}

.hero-grid {
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: end;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f2f2f0;
  color: #4a4a47;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-parkinsans);
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
}

.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a4e34d;
  flex-shrink: 0;
}

.headline {
  font-size: 60px;
  line-height: 108%;
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  max-width: 648px;
  margin: 0;
  font-family: var(--font-parkinsans);
}

.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) rotate(1deg);
  will-change: transform, opacity;
}

.side {
  padding-top: 14px;
  FLOAT: right;
  margin-top: -51px;
}

.side p {
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  font-family: var(--font-goga);
  max-width: 488px;
  text-transform: capitalize;
  margin: 0 0 41px;
}

.cta-btn {
  display: inline-block;
  background: #FC2600;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-parkinsans);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s ease, transform .15s ease;
  opacity: 0;
  transform: translateY(20px);
}

.cta-btn:hover { background: #d1361f; }
.cta-btn:active { transform: scale(0.97) translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .badge, .split-word, .cta-btn {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .side { padding-top: 0; margin-top: 30px; }
  .side p { max-width: none; font-size: 16px; }
  .slider-section { padding: 60px 0 !important; }
}

@media (max-width: 700px) {
  .hero { padding: 40px 20px 48px; }
  .headline { font-size: 35px; line-height: 120%; }
}

.slider-section {
  position: relative;
  width: 100%;
  padding: 100px 0 80px;
  background: #ffffff;
  overflow: hidden;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
  will-change: transform;
}

.slide-card {
  flex: 0 0 300px;
  height: 350px;
  border-radius: 32px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.slide-card img, .slide-card video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 640px) {
  .slide-card { flex-basis: 220px; height: 260px; border-radius: 24px; }
}

.logos-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 40px 64px;
  background: #ffffff;
  overflow: hidden;
}

.logos-eyebrow {
  color: #000;
  margin: 0 0 28px;
  opacity: 0;
  transform: translateY(20px);
  font-family: var(--font-parkinsans);
  font-weight: 400;
  font-size: 20px;
  line-height: 163%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.logos-viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
}

.logos-section.in-view .logos-track { animation: scrollLogos 22s linear infinite; }
.logos-section:hover .logos-track { animation-play-state: paused; }

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  font-family: var(--font-parkinsans);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(24px);
}

.logo-item svg { width: 22px; height: 22px; flex-shrink: 0; }
.logo-item .pin { width: 14px; height: 14px; color: #ea3f24; }
.logo-item.italic { font-style: italic; font-weight: 800; }

@keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.logos-section.in-view .logos-eyebrow { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.logos-section.in-view .logo-item { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .logos-eyebrow, .logo-item { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 640px) {
  .logos-section { padding: 40px 20px 48px; }
  .logos-track { gap: 36px; }
  .logo-item { font-size: 16px; }
}

.projects-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}

.projects-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.projects-header-row .projects-heading { margin: 0; }

.projects-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 10px;
}

.projects-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-goga);
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  font-weight: 600;
  text-transform: uppercase;
  color: #8b8b8e;
  padding: 0;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.projects-tab:hover { color: #4a4a47; }
.projects-tab.active { color: #FC2600; font-weight: 800; }

.projects-heading {
  font-family: var(--font-parkinsans);
  font-weight: 600;
  max-width: 300px;
  font-size: 55px;
  line-height: 109.00000000000001%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #000;
  margin: 0 0 40px;
}

.projects-heading .split-word {
  display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px 15px;
}

.project-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-card.card-fade-out {
  opacity: 0; transform: translateY(14px) scale(0.97); pointer-events: none;
}

.project-image { border-radius: 17px; overflow: hidden; height: 600px; background: #eee }

.project-image img {
  width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1);
  transition: transform 0.5s cubic-bezier(.22, .9, .32, 1);
}

.project-card:hover .project-image img { transform: scale(1.08); }

.project-caption {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 17px; padding: 0 2px;
}

.project-name {
  margin: 0; font-size: 20px; line-height: 150%; letter-spacing: 0%;
  font-family: var(--font-parkinsans); font-weight: 600; color: #000; text-transform: capitalize;
}

.project-tag { font-size: 11px; font-weight: 500; font-family: var(--font-parkinsans); color: #666668; white-space: nowrap; }

.see-all-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 700px;
  margin: 90px auto 0px; padding: 22px 18px; background: #000; color: #ffffff; border: none;
  border-radius: 20px; font-size: 20px; font-weight: 600; text-transform: capitalize; cursor: pointer;
  font-family: var(--font-parkinsans); transition: background-color 0.3s ease; opacity: 0; transform: translateY(24px);
}

.see-all-btn svg { width: 40px; height: 40px; flex-shrink: 0; transition: transform 0.3s ease; }
.see-all-btn:hover { background: #FC2600; }
.see-all-btn:hover svg { transform: translateX(4px); }

.projects-section.in-view .split-word { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.projects-section.in-view .project-card { animation: riseInCard 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.projects-section.in-view .see-all-btn { animation: riseInCard 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInCard { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .split-word, .project-card, .see-all-btn { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 760px) {
  .projects-header-row { flex-direction: column; gap: 20px; align-items: flex-start; }
  .projects-tabs { gap: 14px; }
}

@media (max-width: 640px) {
  .projects-section { padding: 40px 20px 56px; }
  .projects-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .project-image { height: 280px !important; }
  .see-all-btn { padding: 18px 22px; font-size: 14px; }
}

.clients-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 160px 40px;
  overflow: hidden;
}

.clients-heading {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 50px; line-height: 109.00000000000001%;
  text-transform: capitalize; color: #000; max-width: 300px;
}

.clients-heading_wrap { display: flex; align-items: center; justify-content: space-between; margin-bottom: 80px; }

p.clients_para {
  font-family: var(--font-parkinsans); font-weight: 400; font-style: Regular; font-size: 25px; max-width: 383px;
  leading-trim: NONE; line-height: 163%; letter-spacing: 0%; text-transform: capitalize;
}

.clients-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.clients-viewport { width: 100%; }

.clients-track { display: flex; align-items: flex-start; justify-content: space-between; gap: 50px; flex-wrap: wrap; }

.client-card { flex: 0 0 400px; max-width: 400px; opacity: 0; transform: translateY(30px); }

p.client-founder {
  font-family: var(--font-goga); font-weight: 400; margin-top: 11px; color: #000; font-size: 16px;
  line-height: 109.00000000000001%; letter-spacing: 0%; text-transform: capitalize;
}

.client-image { border-radius: 18px; overflow: hidden; width: 100%; aspect-ratio: 400 / 452; background: #eee; margin-bottom: 18px; }

.client-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.client-quote {
  font-family: var(--font-parkinsans); font-weight: 400; font-size: 19px; line-height: 150%; letter-spacing: 0%;
  color: #000000EE; margin: 40px 0 38px;
}

.client-quote .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.client-name {
  margin: 0; font-family: var(--font-parkinsans); font-size: 18px; line-height: 109.00000000000001%;
  letter-spacing: 0%; text-transform: capitalize; font-weight: 700; color: #000;
}

.clients-section.in-view .clients-heading .split-word { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.clients-section.in-view .client-card { animation: riseInCard 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.clients-section.in-view .client-quote .split-word { animation: riseInWord 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInWord { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .split-word, .client-card { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 960px) {
  .clients-track { gap: 40px !important; }
  .projects-heading { font-size: 30px !important; }
  .project-image { height: 200px !important; }
  .project-name { font-size: 15px !important; }
  .client-card { flex-basis: 260px !important; }
  .client-quote { font-size: 16px !important; margin: 20px 0 20px !important; }
  .client-name { font-size: 17px !important; }
  .services-section { padding: 70px 0 0 !important; }
  .services-container { padding: 0 20px !important; }
  .services-heading { font-size: 30px !important; }
  .services-tag { margin-bottom: 30px !important; }
}

@media (max-width: 640px) {
  .clients-section { padding: 48px 0 80px; }
  .clients-heading_wrap { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; padding: 0 20px; }
  .clients-viewport { position: relative; width: 100%; overflow: hidden; }
  .clients-track {
    flex-wrap: nowrap; justify-content: flex-start; gap: 16px; width: max-content;
    animation: scrollClientsMobile 26s linear infinite; will-change: transform;
  }
  .clients-section:hover .clients-track, .clients-track:active { animation-play-state: paused; }
  @keyframes scrollClientsMobile { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .client-card { flex: 0 0 82%; max-width: 340px; }
  .client-card.duplicate { display: block; }
  .clients-viewport::before, .clients-viewport::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
  }
  .clients-viewport::before { left: 0; background-color: #fff; filter: blur(40px); }
  .clients-viewport::after { right: 0; background-color: #fff; filter: blur(40px); }
}

.services-section {
  background: #000; border-radius: 0px; padding: 90px 0 0; color: #ffffff; overflow: hidden; margin: 0 auto;
}

.services-container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.services-header { margin-bottom: 60px; }

.services-tag {
  display: inline-block; font-size: 17px; font-weight: 600; color: #fff; font-family: var(--font-parkinsans);
  border: 1px solid #FC2600; padding: 6px 16px; border-radius: 999px; margin-bottom: 40px;
}

.services-heading {
  font-size: 55px; line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; max-width: 760px;
  margin: 0; font-family: var(--font-parkinsans); color: #ffffff;
}

.services-heading em { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 500; }

.services-pin { perspective: 1400px; }
.services-stack, .services-image-stack { transform-style: preserve-3d; }
.service-item, .image-pair { backface-visibility: hidden; will-change: transform, opacity; }

.services-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.services-left { position: relative; }
.services-stack { position: relative; height: 450px; overflow: hidden; }

.service-item {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex;
  flex-direction: column; justify-content: center;
}

.service-title {
  font-family: var(--font-parkinsans); font-size: 40px; font-weight: 700; letter-spacing: -0.01em;
  margin: 0 0 31px; color: #ffffff;
}

.service-list { list-style: none; margin: 0 0 50px; padding: 0; display: flex; flex-direction: column; gap: 12px; }

.service-list li {
  position: relative; padding-left: 20px; font-family: var(--font-parkinsans); font-size: 18px;
  font-weight: 400; color: #e5e5e8; line-height: 1.4;
}

.service-list li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: #8a8a92;
}

.service-cta-btn { opacity: 1 !important; transform: none !important; max-width: 276px; }

.services-right { position: relative; }
.services-image-stack { position: relative; height: 700px; overflow: hidden; }

.image-pair { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; }
.image-pair-inner { position: relative; width: 100%; height: 500px; }

.image-box {
  position: absolute; width: 330px; height: 400px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); left: 0; top: 0;
}

.image-box.offset { width: 300px; height: 420px; left: 261px; top: 60px; z-index: 2; }
.image-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bg-blue { background: linear-gradient(160deg, #7fc7e8, #4a9fd6); }
.bg-lime { background: linear-gradient(160deg, #d4f766, #a8e63c); }
.bg-coral { background: linear-gradient(160deg, #f5a08a, #e8735a); }
.bg-cream { background: linear-gradient(160deg, #f5e6a8, #e8d074); }
.bg-green { background: linear-gradient(160deg, #2d6a4f, #1b4332); }
.bg-mint { background: linear-gradient(160deg, #95e6b8, #52c98a); }
.bg-peach { background: linear-gradient(160deg, #e8c4a0, #d9a374); }
.bg-teal { background: linear-gradient(160deg, #1b4d4a, #0d2e2c); }

@media (max-width: 860px) {
  .services-flex { grid-template-columns: 1fr; gap: 40px; }
  .services-pin { height: auto; padding: 40px 0 100px; }
  .services-stack { height: 460px; }
  .services-image-stack { height: 300px; }
  .image-pair-inner { height: 260px; }
  .image-box { width: 180px; height: 240px; }
  .image-box.offset { width: 140px; height: 180px; left: 120px; top: 30px; }
}

.process-section { max-width: 1320px; margin: 0 auto; padding: 150px 40px 150px; }

.process-heading {
  font-family: var(--font-parkinsans); font-weight: 500; font-size: 55px; line-height: 109.00000000000001%;
  letter-spacing: 0%; text-transform: capitalize; color: #000; margin: 0 0 73px;
}

.process-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.process-list { border-top: 1px solid #202024; }

.process-row {
  display: flex; align-items: center; gap: 24px; padding: 48px 24px; border-bottom: 1px solid #202024;
  opacity: 0; transform: translateY(24px); transition: background-color 0.3s ease, border-color 0.3s ease; cursor: pointer;
}

.process-row:hover { background-color: #FC2600; border-color: #FC2600; }
.process-row:hover .process-num, .process-row:hover .process-title { color: #ffffff; }
.process-row:hover .process-icon { filter: invert(1); }
.process-row-end { height: 1px; }

.process-num {
  color: #000000; font-family: 'Parkinsans'; font-weight: 500; font-size: 12px; line-height: 100%;
  letter-spacing: 0%; width: 24px; flex-shrink: 0; transition: color 0.3s ease;
}

.process-title {
  flex: 1; font-family: var(--font-parkinsans); font-size: 25px; line-height: 100%; letter-spacing: -1.5px;
  font-weight: 700; color: #000; margin: 0; transition: color 0.3s ease;
}

.process-title .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.process-icon { width: 77px; height: 75px; color: #111111; flex-shrink: 0; transition: filter 0.3s ease; }

.process-section.in-view .process-heading .split-word { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.process-section.in-view .process-row { animation: riseInRow 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.process-section.in-view .process-title .split-word { animation: riseInWord 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInRow { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .split-word, .process-row { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 600px) {
  .process-section { padding: 70px 20px; }
  .process-row { gap: 14px; padding: 24px 0; }
  .process-icon { width: 40px; height: 40px; }
  .process-heading { font-size: 30px; margin: 0 0 30px; }
  .process-title { font-size: 15px; }
}

.about-section { position: relative; margin: 0 auto; padding: 64px 40px 170px; overflow: hidden; font-family: var(--font-parkinsans); }

.about-container { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 111px; align-items: start; }

.about-photo-wrap { position: relative; }
.about-blob svg { position: absolute; top: -54px; left: -7%; width: 778px; border-radius: 0px; z-index: 0; }

.about-photo {
  position: relative; z-index: 1; width: 100%; object-fit: cover; border-radius: 20px; display: block;
  opacity: 0; transform: translateY(30px);
}

.about-content { padding-top: 20px; }

.about-heading {
  font-family: var(--font-parkinsans); font-weight: 500; font-size: 45px; line-height: 120%; letter-spacing: -0.01em;
  color: #000; margin: 0 0 20px; max-width: 532px;
}

.about-heading .split-word { display: inline-block; opacity: 0; transform: translateY(20px); will-change: transform, opacity; }

.about-desc {
  color: #000000EE; font-family: 'Parkinsans'; font-weight: 400; font-size: 20px; line-height: 150%;
  letter-spacing: 0%; max-width: 580px; margin: 0 0 24px; opacity: 0; transform: translateY(20px);
}

.about-signature { margin-bottom: 55px; rotate: -8deg; margin-top: -27px; opacity: 0; transform: translateY(16px); }

.signature-text {
  font-family: 'Michigan Signature'; font-weight: 400; font-size: 25px; line-height: 150%; rotate: -8deg;
  letter-spacing: 0%; color: #0800F6EE;
}

.about-name { font-size: 13px; font-weight: 700; color: #111111; margin: 0; opacity: 0; transform: translateY(14px); }

.about-role {
  color: #000; margin: 2px 0 46px; font-family: 'Parkinsans'; font-weight: 400; font-size: 18px; line-height: 150%;
  letter-spacing: 0%; opacity: 0; transform: translateY(14px);
}

.about-cta-btn { opacity: 0; transform: translateY(20px); font-size: 14px; padding: 13px 28px; text-align: center; }

.about-cards-wrap { position: relative; height: 260px; margin-top: 20px; }

.about-cards-blob { position: absolute; right: -11px; width: 1200px; bottom: 0; border-radius: 999px; z-index: 0; opacity: 0; }

.about-cards { position: absolute; z-index: 1; height: 100%; top: 0px; transform: translateY(-81%); right: 8%; display: flex; align-items: center; }

.about-card {
  width: 230px; height: 290px; border-radius: 42px; overflow: hidden; background: #1a1a1a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); opacity: 0; transform: translateY(30px) scale(0.9);
}

.about-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-1 { transform: translateY(30px) scale(0.9) rotate(-10deg); margin-right: -30px; margin-top: -30px; z-index: 1; }
.card-2 { z-index: 2; }
.card-3 { transform: translateY(30px) scale(0.9) rotate(1deg); margin-left: -6px; z-index: 1; }

.about-section.in-view .about-blob { animation: blobIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-photo { animation: riseIn 0.7s cubic-bezier(.22, .9, .32, 1) forwards; animation-delay: 0.1s; }
.about-section.in-view .about-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-desc { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-signature { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-name { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-role { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-cta-btn { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .about-cards-blob { animation: blobIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .card-1 { animation: cardIn1 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .card-2 { animation: riseIn 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-section.in-view .card-3 { animation: cardIn3 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes blobIn { to { opacity: 1; transform: scale(1); } }
@keyframes cardIn1 { to { opacity: 1; transform: translateY(0) scale(1) rotate(-10deg); } }
@keyframes cardIn3 { to { opacity: 1; transform: translateY(0) scale(1) rotate(10deg); } }

@media (prefers-reduced-motion: reduce) {
  .about-blob, .about-photo, .split-word, .about-desc, .about-signature, .about-name, .about-role,
  .about-cta-btn, .about-cards-blob, .about-card {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 860px) {
  .about-container { grid-template-columns: 1fr; }
  .about-blob svg { top: -54px; left: -40px; width: 100%; }
  .about-container { gap: 40px }
  .about-section { padding: 64px 20px 50px; }
  .about-heading { font-size: 30px; line-height: 120%; }
  .about-desc { font-size: 17px; }
  .about-cards-wrap { margin-top: 120px; height: 100%; }
  .card-1 { margin-top: 0px; }
  .about-cards-blob { width: 100%; top: 0px; }
  .about-cards { position: relative; padding: 0 20px; bottom: 0px; transform: translateY(0%); right: 0px; }
  .about-cards-wrap { grid-column: 1 / 2; display: none; }
  .about-card { width: 300px; height: 300px; }
}

.faq-section { background: #000000; padding: 120px 20px 100px; position: relative; font-family: var(--font-parkinsans); }

.faq-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; gap: 40px; align-items: start; }

.faq-heading {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px; line-height: 123%; text-transform: capitalize;
  color: #ffffff; margin: 0; max-width: 522px;
}

.faq-heading .split-word { display: inline-block; opacity: 0; transform: translateY(20px); will-change: transform, opacity; }

.faq-list { margin-top: 300px; }
.faq-item { border-bottom: 1px solid #2a2a2e; opacity: 0; transform: translateY(20px); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: none;
  border: none; cursor: pointer; padding: 34px 0; text-align: left;
}

.faq-question span:first-child { color: #ffffff; font-family: var(--font-parkinsans); font-weight: 600; font-size: 20px; line-height: 1.5; }
.faq-question .split-word { display: inline-block; }

.faq-toggle {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; border: 1px solid #FF3701; display: flex;
  align-items: center; justify-content: center; color: #FF3701; transition: transform 0.3s ease;
}

.faq-toggle svg { width: 15px; height: 15px; }
.faq-toggle svg line:first-child { transition: opacity 0.25s ease; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-answer p {
  font-size: 17px; line-height: 1.7; font-family: var(--font-goga); color: #666668; margin: 0 0 22px; padding-right: 60px
}

.faq-item.active .faq-answer { max-height: 200px; }

.faq-section.in-view .faq-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.faq-section.in-view .faq-item { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.faq-section.in-view .faq-question .split-word { animation: riseInWord 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .split-word, .faq-item { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 860px) {
  .faq-container { grid-template-columns: 1fr; gap: 32px; flex-direction: column; }
  .footer-glow img { top: -50px !important; }
}

@media (max-width: 700px) {
  .faq-section { padding: 90px 0 70px !important; margin-top: 70px !important; }
  .faq-container { padding: 0 20px !important; }
  .sh_badge img { width: 170px !important; }
  .sh_badge { position: absolute !important; top: -72px !important; right: 0px !important; }
  .faq-heading { font-size: 30px !important; }
  .faq-question { padding: 26px 0 !important; }
  .faq-question span:first-child { font-size: 16px !important; }
  .faq-toggle { flex-shrink: 0; width: 33px !important; height: 33px !important; }
  .faq-answer p { padding-right: 20px !important; font-size: 15px !important; line-height: 140% !important; }
  .about-signature { margin-bottom: 30px !important; rotate: -8deg; margin-top: -4px !important }
  .about-role { color: #000; margin: 2px 0 35px !important; }
  .booking-section { padding: 70px 20px 170px !important; }
  .booking-badge { font-size: 12px !important; }
  .booking-heading { font-size: 30px !important; margin: 0 auto 50px !important; }
  .faq-list { margin-top: 0px !important; }
  .footer-heading { font-size: 30px !important; margin: 0 0 40px !important; }
}

.booking-section { max-width: 1000px; margin: 0 auto; padding: 90px 40px 300px; font-family: var(--font-parkinsans); text-align: center; }

.booking-badge {
  display: inline-block; color: #000000EE; background: #D9D9D936; padding: 11px 28px; border-radius: 99px;
  font-weight: 400; font-size: 18px; line-height: 150%; letter-spacing: 0%; text-align: center; text-transform: uppercase;
  margin-bottom: 39px; opacity: 0; transform: translateY(20px);
}

.booking-heading {
  color: #000; max-width: 514px; font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px;
  line-height: 109.00000000000001%; letter-spacing: 0%; text-align: center; margin: 0 auto 82px;
}

.booking-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.booking-widget {
  border: 1px solid #e7e7e4; border-radius: 18px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06); overflow: hidden;
  height: 630px; background: #ffffff;
}

#my-cal-inline-call { height: 100% !important; }

.booking-section.in-view .booking-badge { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.booking-section.in-view .booking-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.booking-section.in-view .booking-widget { animation: riseInWidget 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInWidget { to { opacity: 1; transform: translateY(0) scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .booking-badge, .split-word, .booking-widget { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 760px) { .booking-mock { grid-template-columns: 1fr; } }

.footer-section { background: #000000; padding: 56px 0 0; font-family: var(--font-parkinsans); color: #ffffff; border-radius: 0px; position: relative; }

.footer-glow img { position: absolute; top: -150px; left: 0; right: 0; width: 100%; height: auto; pointer-events: none; z-index: 0; }

.sh_badge { position: absolute; top: -95px; right: 200px; }
.sh_badge img { width: 248px; }

.footer-container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.footer-top { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding-bottom: 40px; }
.footer-left { opacity: 0; transform: translateY(24px); max-width: 673px; }

.footer-heading {
  color: #ffffff; font-family: var(--font-parkinsans); font-weight: 600; font-size: 80px; line-height: 114.99999999999999%;
  letter-spacing: 0%; text-transform: capitalize; max-width: 700px; margin: 0 0 75px;
}

.footer-heading .split-word { display: inline-block; opacity: 0; transform: translateY(20px); will-change: transform, opacity; }
.footer-cta-btn { opacity: 1 !important; transform: none !important; }
.footer-right { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; opacity: 0; transform: translateY(20px); }

.footer-col-title {
  color: #fff; margin: 0; font-family: var(--font-parkinsans); font-weight: 400; font-size: 16px; line-height: 100%;
  margin-bottom: 19px; letter-spacing: 0%; text-transform: capitalize;
}

.footer-col-title:hover { color: #ffffff; }
.footer-contact { min-width: 160px; grid-column: 1 / -1; opacity: 0; transform: translateY(20px); }

.footer-label {
  font-family: 'Parkinsans'; font-weight: 400; font-size: 16px; line-height: 100%; letter-spacing: 0.04em;
  text-transform: uppercase; color: #FFFFFF66; margin: 0 0 15px;
}

.footer-label-spaced { margin-top: 40px; }

.footer-value {
  color: #ffffff; margin: 0; font-family: Parkinsans; font-weight: 800; font-size: 18px; line-height: 112.99999999999999%;
  letter-spacing: 0%; text-transform: uppercase;
}

.footer-bottom { padding: 50px 0 40px; opacity: 0; transform: translateY(16px); }

.footer-copyright {
  color: #FFFFFF66; margin: 0; font-family: var(--font-parkinsans); font-weight: 400; font-size: 16px; line-height: 100%; letter-spacing: 0%;
}

.footer-copyright a { color: #6b6b70; text-decoration: underline; }

.footer-wordmark { display: flex; }
.footer-wordmark img { width: 100%; height: 400px; object-fit: contain; margin-top: 150px; }

.wordmark-s, .wordmark-h {
  font-family: var(--font-parkinsans); font-weight: 800; font-size: clamp(180px, 26vw, 320px); color: #ffffff;
  letter-spacing: -0.02em; opacity: 0; transform: translateY(60px);
}

.footer-section.in-view .footer-left { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.footer-section.in-view .footer-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.footer-section.in-view .footer-col { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.footer-section.in-view .footer-contact { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.footer-section.in-view .footer-bottom { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.footer-section.in-view .wordmark-s { animation: riseInMark 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.footer-section.in-view .wordmark-h { animation: riseInMark 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInMark { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .footer-left, .split-word, .footer-col, .footer-contact, .footer-bottom, .wordmark-s, .wordmark-h {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr; gap: 80px; }
  .footer-col-title { font-size: 14px; line-height: 100%; margin-bottom: 13px; }
  .footer-right { justify-content: flex-start; gap: 40px; flex-wrap: wrap; }
  .footer-value { font-size: 14px; }
  .footer-bottom { padding: 20px 0 40px; }
}

@media (max-width: 700px) {
  .footer-container { padding: 0 20px; }
  .footer-wordmark img { width: 100%; height: 80px; margin-top: 20px; }
}

.about-hero-section { max-width: 1440px; margin: 0 auto; padding: 64px 40px 0; font-family: var(--font-parkinsans); overflow: hidden; }

.about-hero-heading {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px; line-height: 125%; letter-spacing: 0%;
  text-transform: lowercase; text-align: center; color: #000; max-width: 888px; margin: 0 auto 90px;
}

.about-hero-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.about-hero-visual { position: relative; display: flex; justify-content: center; }

.about-hero-visual::before {
  content: ""; position: absolute; width: 775px; height: 186px; left: 50%; top: -40px; transform: translateX(-50%);
  background: #D75633; opacity: 0.25; filter: blur(71px); z-index: 0; pointer-events: none;
}

.about-hero-main-img {
  position: relative; z-index: 1; width: 100%; max-width: 1138px; border-radius: 20px; opacity: 0;
  transform: translateY(40px) scale(0.96); will-change: transform, opacity;
}

.about-hero-main-img img { position: relative; z-index: 1; width: 100%; height: auto; display: block; }

.about-hero-cat-img {
  position: absolute; right: -27px; bottom: 300px; width: 255px; border-radius: 16px; overflow: hidden; z-index: 2;
  opacity: 0; transform: translateY(30px) rotate(-4deg); will-change: transform, opacity;
}

.about-hero-cat-img img { width: 100%; height: auto; display: block; }

.about-hero-section.in-view .about-hero-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-hero-section.in-view .about-hero-main-img { animation: riseInImg 0.75s cubic-bezier(.22, .9, .32, 1) forwards; }
.about-hero-section.in-view .about-hero-cat-img { animation: riseInCat 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInImg { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes riseInCat { to { opacity: 1; transform: translateY(0) rotate(-4deg); } }

@media (prefers-reduced-motion: reduce) {
  .about-hero-heading .split-word, .about-hero-main-img, .about-hero-cat-img {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 768px) {
  .about-hero-section { padding: 48px 20px 0px; }
  .about-hero-heading { font-size: 30px; line-height: 120%; margin-bottom: 50px; }
  section.bg-white-spacer { background: #fff; filter: blur(17px); height: 120px; margin-top: -45px; z-index: 4; position: relative; }
  .about-hero-visual::before { width: 300px; height: 100px; top: -20px; filter: blur(50px); }
  .about-hero-cat-img { width: 110px; right: -6px; bottom: 30px; }
}

section.bg-white-spacer { background: #fff; filter: blur(17px); height: 150px; margin-top: -37px; z-index: 4; position: relative; }

.stats-section { max-width: 1300px; margin: 0 auto; padding: 70px 20px; font-family: var(--font-parkinsans); }

.stats-eyebrow {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 20px; line-height: 163%; letter-spacing: 0%;
  text-transform: capitalize; color: #000; margin: 0 0 40px;
}

.stats-eyebrow .split-word { display: inline-block; opacity: 0; transform: translateY(18px); will-change: transform, opacity; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { opacity: 0; transform: translateY(24px); }

.stat-number {
  font-family: var(--font-parkinsans); font-weight: 500; font-size: 72px; line-height: 100%; letter-spacing: -2%;
  color: #000; margin: 0 0 10px; font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 13px; color: #3C4858; font-family: var(--font-parkinsans); font-weight: 500; font-size: 15px;
  line-height: 140%; letter-spacing: 0%; margin: 0;
}

.stats-section.in-view .stats-eyebrow .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.stats-section.in-view .stat-item { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .split-word, .stat-item { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 350px) {
  .stats-section { padding: 48px 20px 56px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
}

.statement-section { max-width: 1100px; margin: 0 auto; padding: 100px 40px 114px; font-family: var(--font-parkinsans); }
.statement-container { justify-content: space-between; align-items: flex-end; gap: 60px; }

.statement-heading {
  color: #000; max-width: 1031px; font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px;
  line-height: 125%; letter-spacing: 0%; text-transform: lowercase; margin: 0;
}

.statement-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.statement-desc {
  color: #000; max-width: 423px; font-family: var(--font-goga); font-weight: 400; font-size: 18px; margin-top: 102px;
  line-height: 163%; letter-spacing: 0%; text-transform: capitalize; margin: 102px 0 0 auto; flex-shrink: 0;
}

.statement-desc .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.statement-section.in-view .statement-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.statement-section.in-view .statement-desc .split-word { animation: riseInWord 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .statement-heading .split-word, .statement-desc .split-word { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 860px) {
  .statement-container { flex-direction: column; align-items: flex-start; gap: 28px; }
  .statement-desc { max-width: none; }
}

@media (max-width: 480px) { .statement-section { padding: 56px 20px; } }

.gallery-section { max-width: 100%; margin: 0 auto; font-family: var(--font-parkinsans); }
.gallery-container { display: flex; flex-direction: column; gap: 16px; }

.gallery-main { overflow: hidden; width: 100%; height: 818px; background: #eee; opacity: 0; transform: translateY(50px); }

.gallery-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.gallery-row .gallery-item {
  overflow: hidden; width: 100%; aspect-ratio: 1 / 1; background: #eee; opacity: 0; transform: translateY(40px);
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-section.in-view .gallery-main { animation: riseInGallery 0.8s cubic-bezier(.22, .9, .32, 1) forwards; }
.gallery-section.in-view .gallery-row .gallery-item { animation: riseInGallery 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.gallery-section.in-view .gallery-row .gallery-item:nth-child(1) { animation-delay: var(--gallery-delay-1, 0.9s); }
.gallery-section.in-view .gallery-row .gallery-item:nth-child(2) { animation-delay: var(--gallery-delay-2, 1.05s); }
.gallery-section.in-view .gallery-row .gallery-item:nth-child(3) { animation-delay: var(--gallery-delay-3, 1.2s); }

@keyframes riseInGallery { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .gallery-main, .gallery-row .gallery-item { opacity: 1 !important; transform: none !important; animation: none !important; }
}

.how-we-work-section { max-width: 1300px; margin: 0 auto; padding: 80px 40px 100px; font-family: var(--font-parkinsans); }

.how-we-work-eyebrow {
  font-family: var(--font-parkinsans); font-size: 12px; line-height: 100%; letter-spacing: 0%; font-weight: 700;
  text-transform: uppercase; color: #86868B; margin: 0 0 16px;
}

.how-we-work-eyebrow .split-word { display: inline-block; opacity: 0; transform: translateY(16px); }

.how-we-work-heading {
  color: #0F0F11; margin: 0 0 80px; font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px;
  line-height: 110.00000000000001%; letter-spacing: 0%;
}

.how-we-work-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.how-we-work-list { border-top: 1px solid #E5E5EA; }

.how-we-work-row {
  display: flex; justify-content: space-between; gap: 40px; padding: 48px 0; border-bottom: 1px solid #E5E5EA;
  opacity: 0; transform: translateY(24px);
}

.how-we-work-title {
  color: #0F0F11; margin: 0; font-family: var(--font-parkinsans); font-weight: 500; font-size: 30px;
  line-height: 114.99999999999999%; letter-spacing: 0%;
}

.how-we-work-title .split-word { display: inline-block; opacity: 0; transform: translateY(16px); }

.how-we-work-desc {
  color: #0F0F11; max-width: 469px; margin: 0; font-family: var(--font-goga); font-weight: 400; font-size: 18px;
  line-height: 160%; letter-spacing: 0%;
}

.how-we-work-desc .split-word { display: inline-block; opacity: 0; transform: translateY(10px); }

.how-we-work-section.in-view .how-we-work-eyebrow .split-word { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.how-we-work-section.in-view .how-we-work-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.how-we-work-section.in-view .how-we-work-row { animation: riseInRow 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.how-we-work-section.in-view .how-we-work-title .split-word { animation: riseInWord 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }
.how-we-work-section.in-view .how-we-work-desc .split-word { animation: riseInWord 0.4s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .how-we-work-eyebrow .split-word, .how-we-work-heading .split-word, .how-we-work-row,
  .how-we-work-title .split-word, .how-we-work-desc .split-word {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 760px) {
  .how-we-work-row { flex-wrap: wrap; gap: 12px; padding: 30px 0; }
  .how-we-work-title { font-size: 20px; }
  .how-we-work-desc { max-width: none; font-size: 16px; }
}

@media (max-width: 480px) { .how-we-work-section { padding: 48px 20px 20px; } }

@media (max-width: 768px) {
  .gallery-section { padding: 0px 0px 0px; }
  .gallery-row { grid-template-columns: 1fr; gap: 12px; }
  .gallery-main { height: 400px; }
  .gallery-row .gallery-item { aspect-ratio: 1 / 0.85; }
  .how-we-work-heading { font-size: 30px; margin: 0 0 40px; }
}

.case-studies-section { max-width: 1300px; margin: 0 auto; padding: 95px 20px 70px; font-family: var(--font-parkinsans); }

.case-studies-heading {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px; line-height: 125%; text-transform: lowercase;
  text-align: center; color: #000; max-width: 888px; margin: 0 auto 49px;
}

.case-studies-heading .split-word { display: inline-block; opacity: 0; transform: translateY(22px); will-change: transform, opacity; }

.case-studies-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-bottom: 61px; opacity: 0; transform: translateY(16px); }

.case-tab {
  background: none; border: none; font-size: 14px; line-height: 100%; letter-spacing: 0%; cursor: pointer;
  color: #86868B; font-family: var(--font-goga); text-transform: uppercase; padding: 0; transition: color 0.25s ease; white-space: nowrap;
}

.case-tab:hover { color: #FC2600; }
.case-tab.active { color: #FC2600; font-weight: 800; }

.case-studies-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px 15px; }

.case-card { opacity: 0; transform: translateY(24px); transition: opacity 0.3s ease, transform 0.3s ease; }
.case-card.card-fade-out { opacity: 0; transform: translateY(12px) scale(0.97); pointer-events: none; }

.case-image { border-radius: 16px; overflow: hidden; height: 600px; width: 100%; object-fit: cover; background: #eee; }

.case-image img {
  width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1);
  transition: transform 0.5s cubic-bezier(.22, .9, .32, 1);
}

.case-card:hover .case-image img { transform: scale(1.06); }

.case-name {
  margin: 16px 0 0; font-family: var(--font-parkinsans); font-weight: 600; font-size: 20px; line-height: 150%;
  letter-spacing: 0%; text-decoration: none; text-transform: capitalize; color: #000000EE;
}

.case-studies-section.in-view .case-studies-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-studies-section.in-view .case-studies-tabs { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-studies-section.in-view .case-card { animation: riseInCard 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .case-studies-heading .split-word, .case-studies-tabs, .case-card { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 768px) {
  .case-studies-section { padding: 48px 20px 16px; }
  .case-studies-tabs { gap: 14px; }
  .case-studies-grid { gap: 20px 14px; }
}

.contact-hero-section { max-width: 1300px; margin: 0 auto; padding: 80px 40px 100px; font-family: var(--font-parkinsans); }
.contact-hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.contact-badge {
  display: inline-block; font-family: var(--font-inter); font-weight: 700; font-size: 11px; border: 1px solid #E5E7EB;
  line-height: 100%; text-transform: uppercase; color: #111827; background: #1118270D; padding: 6px 12px; border-radius: 6px; margin-bottom: 21px;
}

.contact-badge .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.contact-heading {
  color: #111827; margin: 0 0 20px; font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px; line-height: 100%;
}

.contact-heading .split-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

.contact-desc {
  color: #000; max-width: 560px; font-family: var(--font-goga); font-weight: 400; font-size: 18px; line-height: 150%;
  letter-spacing: 0%; margin: 0 0 40px;
}

.contact-desc .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.contact-testimonial {
  border: 1px solid #E5E7EB; border-radius: 16px; padding: 32px; max-width: 560px; box-shadow: 0px 10px 24px -8px #0000000D;
  opacity: 0; transform: translateY(24px);
}

.contact-testimonial-slides { position: relative; min-height: 130px; margin-bottom: 18px; }

.contact-slide {
  position: absolute; top: 0; left: 0; width: 100%; opacity: 0; pointer-events: none; transform: translateX(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.contact-slide.active { opacity: 1; pointer-events: auto; transform: translateX(0); position: relative; }

.contact-quote {
  color: #111827; margin: 0 0 30px; font-family: var(--font-goga); font-weight: 400; font-size: 16px; line-height: 160%; letter-spacing: 0%;
}

.contact-slide-person { display: flex; align-items: center; gap: 12px; }

.contact-avatar { width: 40px; height: 40px; border: 1px solid #E5E7EB; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.contact-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.contact-testimonial-info { min-width: 0; }

.contact-testimonial-name {
  margin: 0; color: #111827; font-family: var(--font-goga); font-weight: 600; font-size: 14px; line-height: 100%; letter-spacing: 0%;
}

.contact-testimonial-role {
  margin: 7px 0 0; font-family: var(--font-goga); font-weight: 400; font-size: 12px; line-height: 100%; letter-spacing: 0%; color: #6B7280;
}

.contact-testimonial-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #eeeeec; }
.contact-dots { display: flex; gap: 6px; }

.contact-dots .dot {
  width: 5px; height: 5px; border-radius: 100%; background: #6B7280; border: none; padding: 0; cursor: pointer;
  transition: background-color 0.25s ease, width 0.25s ease;
}

.contact-dots .dot.active { background: #111111; width: 16px; border-radius: 3px; }
.contact-testimonial-nav { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.contact-nav-btn {
  width: 36px; height: 36px; border-radius: 6px; border: none; background: #111827; color: #ffffff; display: flex;
  align-items: center; justify-content: center; cursor: pointer; transition: background-color 0.2s ease;
}

.contact-nav-btn:hover { background: #2b2b2b; }
.contact-nav-btn svg { width: 16px; height: 16px; }

.contact-hero-right { opacity: 0; transform: translateY(30px) scale(0.98); }

.booking-widget {
  border: 1px solid #e7e7e4; border-radius: 18px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06); overflow: hidden;
  min-height: 560px; background: #ffffff;
}

.contact-hero-section.in-view .contact-badge .split-word { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-hero-section.in-view .contact-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-hero-section.in-view .contact-desc .split-word { animation: riseIn 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-hero-section.in-view .contact-testimonial { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-hero-section.in-view .contact-hero-right { animation: riseInCal 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInCal { to { opacity: 1; transform: translateY(0) scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .contact-badge .split-word, .contact-heading .split-word, .contact-desc .split-word, .contact-testimonial, .contact-hero-right {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 900px) { .contact-hero-container { grid-template-columns: 1fr; gap: 40px; } }

@media (max-width: 480px) {
  .contact-hero-section { padding: 48px 20px 56px; }
  .contact-testimonial { max-width: none; }
}

.trust-section { max-width: 1160px; margin: 0 auto; padding: 40px 40px 100px; font-family: var(--font-parkinsans); }

.trust-label {
  text-align: center; font-family: var(--font-parkinsans); font-weight: 500; font-size: 13px; line-height: 100%;
  letter-spacing: 0%; text-transform: lowercase; color: #6B7280; margin: 0 0 24px;
}

.trust-label .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.trust-bar {
  display: flex; align-items: stretch; background: #F3F4F6; border: 1px solid #E5E7EB; border-radius: 12px; overflow: hidden;
  opacity: 0; transform: translateY(20px);
}

.trust-item {
  flex: 1; display: flex; align-items: center; justify-content: center; font-family: var(--font-inter); font-weight: 700;
  font-size: 16px; line-height: 100%; gap: 8px; padding: 22px 16px; border-right: 1px solid #E5E7EB; color: #111827; white-space: nowrap;
}

.trust-item:last-child { border-right: none; }
.trust-item svg { width: 15px; height: 15px; flex-shrink: 0; color: #111111; }

.trust-section.in-view .trust-label .split-word { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.trust-section.in-view .trust-bar { animation: riseInBar 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInBar { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .trust-label .split-word, .trust-bar { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 700px) {
  .trust-bar { flex-wrap: wrap; border-radius: 20px; }
  .trust-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid #e2e2df; padding: 14px 10px; font-size: 12px; }
  .trust-item:nth-child(even) { border-left: 1px solid #e2e2df; }
}

@media (max-width: 480px) { .trust-section { padding: 32px 20px 40px; } }

.contact-form-section { margin: 0 auto; padding: 60px 0px 100px; font-family: var(--font-parkinsans); background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%); }
.contact-form-container { padding: 70px 20px 150px; max-width: 1300px; margin: 0 auto; }
.contact-form_inner_container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }

.contact-form-heading {
  font-family: var(--font-parkinsans); font-size: 55px; line-height: 118%; letter-spacing: 0%; text-transform: capitalize;
  font-weight: 800; color: #000; max-width: 782px; margin: 0 0 20px;
}

.contact-form-heading .split-word { display: inline-block; opacity: 0; transform: translateY(20px); will-change: transform, opacity; }

.contact-form-subtext {
  color: #000; margin: 0 0 136px; font-family: var(--font-goga); font-weight: 400; font-size: 28px; line-height: 163%;
  letter-spacing: 0%; text-transform: capitalize;
}

.contact-form-subtext .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.contact-form-info { display: flex; flex-direction: column; gap: 45px; opacity: 0; transform: translateY(20px); }

.contact-info-label {
  text-transform: uppercase; color: #00000066; margin: 0 0 15px; font-family: var(--font-parkinsans); font-weight: 400;
  font-size: 16px; line-height: 100%; letter-spacing: 0%;
}

.contact-info-value {
  color: #000; margin: 0; font-family: var(--font-parkinsans); font-weight: 800; font-size: 18px; line-height: 112.99999999999999%;
  letter-spacing: 0%; text-transform: lowercase;
}

.contact-form { display: flex; flex-direction: column; gap: 30px; opacity: 0; transform: translateY(30px); }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-field { display: flex; flex-direction: column; gap: 10px; margin-bottom:30px }

.contact-field label {
  font-family: var(--font-parkinsans); font-size: 14px; line-height: 100%; letter-spacing: 0%; font-weight: 600; color: #000;
}
.wpcf7-list-item {
    display: inline-block;
    margin: 0px;
}
span.wpcf7-list-item-label a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}
span.wpcf7-list-item-label {
    font-size: 14px;
    font-family: 'Goga Test';
}
.contact-field input, .contact-field select, .contact-field textarea {
  color: #737373; font-family: var(--font-goga); font-weight: 400; font-size: 14px; line-height: 100%; letter-spacing: 0%;
  background: #ffffff; border: 1px solid #262626; border-radius: 10px; padding: 12px 16px; outline: none; transition: border-color 0.2s ease;
	width:100%; margin-top:10px;
}

.contact-field input::placeholder, .contact-field textarea::placeholder { color: #b0b0ac; }
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus { border-color: #111111; }
.contact-field textarea { resize: vertical; min-height: 100px; width:100% }

.contact-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 14px; cursor: pointer;
}

.contact-checkbox {
  display: flex; align-items: flex-start; gap: 8px; color: #000; font-family: var(--font-goga); font-weight: 400;
  font-size: 14px; line-height: 100%; letter-spacing: 0%; cursor: pointer;
}

.contact-checkbox input { margin-top: 2px; accent-color: #111111; }
.contact-checkbox a { color: #111111; text-decoration: underline; }

.contact-submit-btn {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: #F4F4F5; color: #09090b;
  font-family: 'Goga Test'; font-weight: 600; font-size: 14px; line-height: 100%; letter-spacing: 0%; border: none;
  border-radius: 6px; padding: 14px 24px; cursor: pointer; transition: background-color 0.2s ease;margin-top:30px;
}

.contact-submit-btn:hover { background: #2b2b2b; }
.contact-submit-btn svg { width: 14px; height: 14px; }

.contact-form-section.in-view .contact-form-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-form-section.in-view .contact-form-subtext .split-word { animation: riseIn 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-form-section.in-view .contact-form-info { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.contact-form-section.in-view .contact-form { animation: riseInForm 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@keyframes riseInForm { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .contact-form-heading .split-word, .contact-form-subtext .split-word, .contact-form-info, .contact-form {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 860px) { .contact-form-container { grid-template-columns: 1fr; gap: 40px; padding: 0px; } }

@media (max-width: 480px) {
  .contact-form-section { padding: 40px 20px 120px; }
  .contact-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat-number { font-size: 40px; }
  .stat-label { font-size: 12px; }
  .statement-heading { font-size: 30px !important; }
  .statement-desc { margin-top: 20px; }
  .statement-section { padding: 56px 20px; }
  .case-studies-heading { font-size: 30px; }
  .case-name { font-size: 15px; }
  .contact-heading { font-size: 30px; }
  .contact-desc { font-size: 16px; }
  .contact-testimonial { padding: 24px }
  .contact-quote { font-size: 14px; }
  .contact-form_inner_container { grid-template-columns: 1fr; }
  .contact-form-heading { font-size: 30px; }
  .contact-form-subtext { margin: 0 0 40px; font-size: 18px; }
  .contact-form-info { gap: 20px; }
  .contact-info-value { font-size: 16px; }
}

@media (max-width:750px) { .case-image { height: 350px; } }
@media (max-width:550px) { .case-image { height: 200px; } }

.case-sticky-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 40px; background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px); border-bottom: 1px solid #e7e7e4; opacity: 0; transform: translateY(-100%); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-sticky-header.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.case-back-link {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-parkinsans); font-size: 13px;
  font-weight: 700; color: #111111; text-decoration: none;
}

.case-back-link svg { width: 15px; height: 15px; }

.case-hero-section { position: relative; width: 100%; height: 100vh; min-height: 500px; max-height: 780px; overflow: hidden; }

.case-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transform: scale(1.06); }
.case-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.case-hero-section::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)); pointer-events: none; z-index: 1;
}

.case-hero-back {
  position: absolute; top: 24px; left: 40px; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-parkinsans); font-size: 13px; font-weight: 700; color: #ffffff; text-decoration: none;
}

.case-hero-back svg { width: 15px; height: 15px; }

.case-hero-title {
  position: absolute; left: 40px; bottom: 40px; z-index: 2; font-family: var(--font-parkinsans); color: #ffffff;
  font-weight: 500; font-size: 100px; line-height: 109.00000000000001%; letter-spacing: 0%; margin: 0;
}

.case-hero-title .split-word { display: inline-block; opacity: 0; transform: translateY(30px); will-change: transform, opacity; }

.case-content-section { max-width: 1300px; margin: 0 auto; padding: 90px 20px 100px; font-family: var(--font-parkinsans); }
.case-content-container { display: grid; grid-template-columns: 500px 1fr; gap: 80px; }

.case-content-heading {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px; line-height: 119%; letter-spacing: 0%;
  color: #000; margin: 0 0 22px;
}

.case-content-heading .split-word { display: inline-block; opacity: 0; transform: translateY(20px); will-change: transform, opacity; }

.case-content-label {
  text-transform: uppercase; color: #000000; margin: 0 0 105px; font-family: var(--font-parkinsans); font-weight: 400;
  font-size: 18px; line-height: 119%; letter-spacing: 0%;
}

.case-content-label .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.case-scroll-link {
  font-size: 12px; font-weight: 600; text-transform: uppercase; color: #000; font-family: monospace; text-decoration: underline;
  opacity: 0; transform: translateY(14px); display: inline-block;
}

.case-content-right { border-top: 1px solid #ECECEC; }

.case-detail-row {
  display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid #ECECEC;
  opacity: 0; transform: translateY(20px);
}

.case-detail-label {
  color: #000; font-family: var(--font-parkinsans); font-weight: 600; font-size: 18px; line-height: 100%; letter-spacing: 0%; margin: 0;
}

.case-detail-value p {
  font-family: var(--font-goga); font-weight: 400; font-size: 18px; line-height: 140%; letter-spacing: 0%; color: #000000; margin: 0 0 9px;
}

.case-detail-value p:last-child { margin-bottom: 0; }
.case-detail-list { margin: 0; padding-left: 18px; }

.case-detail-list li {
  color: #000; font-family: var(--font-goga); font-weight: 400; line-height: 140%; margin-bottom: 9px; letter-spacing: 0%;
}

.case-content-left { margin-top: 80px; }

.case-hero-section.in-view .case-hero-image { animation: riseInImg 0.8s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-hero-section.in-view .case-hero-title .split-word { animation: riseIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-content-section.in-view .case-content-heading .split-word { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-content-section.in-view .case-content-label .split-word { animation: riseIn 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-content-section.in-view .case-scroll-link { animation: riseIn 0.45s cubic-bezier(.22, .9, .32, 1) forwards; }
.case-content-section.in-view .case-detail-row { animation: riseInRow 0.6s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .case-hero-image, .case-hero-title .split-word, .case-content-heading .split-word, .case-content-label .split-word,
  .case-scroll-link, .case-detail-row { opacity: 1 !important; transform: none !important; animation: none !important; }
}

.mosaic-gallery-section { padding: 100px 20px 100px; font-family: var(--font-parkinsans); background-color: #f5f5f5; }
/* Section Spacing options (chosen per-section in ACF on the Case Study's
   flexible content field) — use these when stacking several image/video
   sections back to back so their combined padding doesn't pile up. */
.mosaic-gallery-section--compact { padding: 40px 20px 40px; }
.mosaic-gallery-section--none { padding: 0 20px 0; }
.mosaic-container { display: flex; flex-direction: column; gap: 12px; max-width: 1300px; margin: 0 auto; }

.mosaic-item { overflow: hidden; background: #eee; position: relative; opacity: 0; transform: translateY(40px); }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mosaic-video { height: 771px; }
.mosaic-video video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }

.mosaic-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mosaic-row .mosaic-item { height: auto; width: 100%; }
.mosaic-wide { height: auto; }

.mosaic-gallery-section.in-view .mosaic-video { animation: riseInMosaic 0.8s cubic-bezier(.22, .9, .32, 1) forwards; }
.mosaic-gallery-section.in-view .mosaic-row .mosaic-item { animation: riseInMosaic 0.7s cubic-bezier(.22, .9, .32, 1) forwards; }
.mosaic-gallery-section.in-view .mosaic-row .mosaic-item:nth-child(1) { animation-delay: 0.7s; }
.mosaic-gallery-section.in-view .mosaic-row .mosaic-item:nth-child(2) { animation-delay: 0.85s; }
.mosaic-gallery-section.in-view .mosaic-wide { animation: riseInMosaic 0.75s cubic-bezier(.22, .9, .32, 1) forwards; animation-delay: 1.05s; }

@keyframes riseInMosaic { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .mosaic-item { opacity: 1 !important; transform: none !important; animation: none !important; }
}

.story-section { max-width: 1300px; margin: 0 auto; padding: 100px 20px 0; font-family: var(--font-parkinsans); }
.story-section--compact { padding: 40px 20px 0; }
.story-section--none { padding: 0 20px 0; }
.story-top { display: flex; justify-content: space-between; gap: 80px; margin-bottom: 60px; }

.story-eyebrow {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 13px; line-height: 100%; letter-spacing: 0%;
  text-transform: uppercase; color: #9CA3AF; opacity: 0; transform: translateY(14px);
}

.story-text { max-width: 820px; }

.story-lead {
  font-family: var(--font-parkinsans); font-size: 24px; line-height: 145%; letter-spacing: 0%; font-weight: 700; color: #111827; margin: 0 0 32px;
}

.story-lead .split-word { display: inline-block; opacity: 0; transform: translateY(16px); }

.story-para {
  color: #4B5563; font-family: var(--font-goga); font-weight: 400; font-size: 16px; line-height: 165%; letter-spacing: 0%; margin: 0 0 24px;
}

.story-para .split-word { display: inline-block; opacity: 0; transform: translateY(10px); }

.story-image { width: 100%; height: 700px; background: #111111; border-radius: 0; overflow: hidden; opacity: 0; transform: translateY(40px); }
.story-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.story-section.in-view .story-eyebrow { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.story-section.in-view .story-lead .split-word { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.story-section.in-view .story-para .split-word { animation: riseIn 0.4s cubic-bezier(.22, .9, .32, 1) forwards; }
.story-section.in-view .story-image { animation: riseInImg 0.8s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .story-eyebrow, .story-lead .split-word, .story-para .split-word, .story-image {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 760px) {
  .story-top { grid-template-columns: 1fr; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
}

@media (max-width: 780px) {
  .story-section { padding: 70px 20px 0; }
  .story-section--compact { padding: 30px 20px 0; }
  .story-section--none { padding: 0 20px 0; }
  .story-lead { font-size: 20px; }
  .story-para { font-size: 15px; }
}

.more-cases-section { margin-top: 100px; background: #FAFAFA; padding: 60px 20px 60px; font-family: var(--font-parkinsans); text-align: center; }

.more-cases-eyebrow {
  color: #4B5563; margin: 0 0 12px; font-family: 'Goga Test'; font-weight: 400; font-size: 16px; line-height: 165%;
  letter-spacing: 0%; text-align: center;
}

.more-cases-eyebrow .split-word { display: inline-block; opacity: 0; transform: translateY(14px); }

.more-cases-heading {
  color: #000; font-family: var(--font-parkinsans); font-weight: 600; font-size: 55px; line-height: 119%; letter-spacing: 0%;
  text-align: center; margin: 0 0 37px;
}

.more-cases-heading .split-word { display: inline-block; opacity: 0; transform: translateY(22px); will-change: transform, opacity; }

.more-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 66px; text-align: left; }
.more-cases-container { max-width: 1300px; margin: 0 auto; }
.more-case-card { opacity: 0; transform: translateY(30px); }
.more-case-image { border-radius: 11px; overflow: hidden; height: 398px; width: 100%; background: #eee; margin-bottom: 14px; }

.more-case-image img {
  width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1);
  transition: transform 0.5s cubic-bezier(.22, .9, .32, 1);
}

.more-case-card:hover .more-case-image img { transform: scale(1.06); }

.more-case-title {
  font-family: var(--font-parkinsans); font-weight: 600; font-size: 20px; line-height: 150%; letter-spacing: 0%;
  text-transform: capitalize; color: #000000EE; margin: 0 0 8px;
}

.more-case-desc { color: #4B5563; margin: 0; font-family: var(--font-goga); font-weight: 400; font-size: 16px; line-height: 155%; letter-spacing: 0%; }

.more-cases-cta {
  display: inline-block; background: #FC2600; color: #ffffff; font-family: Parkinsans; font-size: 14px; line-height: 100%;
  font-weight: 800; text-transform: uppercase; padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  transition: background-color 0.2s ease; opacity: 0; transform: translateY(20px);
}

.more-cases-cta:hover { background: #d1361f; }

.more-cases-section.in-view .more-cases-eyebrow .split-word { animation: riseIn 0.5s cubic-bezier(.22, .9, .32, 1) forwards; }
.more-cases-section.in-view .more-cases-heading .split-word { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }
.more-cases-section.in-view .more-case-card { animation: riseInCard 0.65s cubic-bezier(.22, .9, .32, 1) forwards; }
.more-cases-section.in-view .more-cases-cta { animation: riseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .more-cases-eyebrow .split-word, .more-cases-heading .split-word, .more-case-card, .more-cases-cta {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

@media (max-width: 760px) { .more-cases-grid { grid-template-columns: 1fr; gap: 32px; } }

@media (max-width: 780px) {
  .more-cases-section { padding: 70px 20px; margin-top: 70px; }
  .more-cases-heading { font-size: 30px; }
}

@media (max-width: 780px) {
  .case-hero-section { min-height: 380px; }
  .case-hero-back { left: 20px; }
  .case-hero-title { left: 20px; bottom: 24px; font-size: 30px; }
  .case-content-left { margin-top: 0px; }
  .case-content-heading { font-size: 30px; }
  .case-content-label { font-size: 16px; margin: 0 0 30px }
  .case-detail-row { padding: 28px 0; }
  .case-detail-value p { font-size: 16px; }
  .mosaic-video { height: 400px; }
  .mosaic-row { gap: 8px; grid-template-columns: 1fr; }
  .mosaic-row .mosaic-item, .mosaic-wide, .story-image { height: 400px; }
  .mosaic-gallery-section { padding: 60px 20px; }
  .mosaic-gallery-section--compact { padding: 24px 20px; }
  .mosaic-gallery-section--none { padding: 0 20px; }
}

@media (max-width: 860px) {
  .case-content-container { grid-template-columns: 1fr; gap: 32px; }
  .case-detail-row { grid-template-columns: 1fr; gap: 20px; }
  .case-content-section { padding: 48px 20px 56px; }
}

/* ============================================================
   "WHAT WE DO" PINNED CARDS SECTION — rebuilt
   Root cause of the big black area on tall/wide screens:
   .dm-sticky was only ever made as tall as ONE card row (~600px).
   On a 1920x1080 screen the pinned box sat at the top of the
   browser window while the rest of the screen showed plain black
   section background underneath it during the scroll. Fix:
   .dm-sticky is now a real 100vh box and the row of cards is
   vertically centered inside it, so the pinned view always
   exactly fills the screen — no leftover gap on any screen size.
   ============================================================ */

.dm-section {
  position: relative;
  background: #000;
  color: #fff;
}

.dm-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.dm-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.dm-stage {
  position: relative;
  width: 100%;
  /* height set via JS to exactly one row's content height */
}

.copy-anchor {
  position: absolute;
  left: 0;
  top: 68px;
  width: 390px;
  min-height: 260px;
}

.copy-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.copy-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


  .copy-title {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
    font-weight: 650;
    color: #fff;
    font-family: var(--font-parkinsans);
}

.copy-title em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
}

.copy-rule {
  height: 1px;
  width: 100%;
  margin: 0 0 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .02));
}

/* ---------- BULLET LIST (matches the reference design) ---------- */
.copy-bullets {
list-style: none;
    margin: 38px 0 37px;
  
    letter-spacing: 0%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.copy-bullets li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-parkinsans);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}

.copy-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
  background-image: url('../images/li_before_icon.svg'); /* or png */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- CTA BUTTON (always visible; not tied to the
   scroll-reveal system used by other sections' .cta-btn) ---------- */
.dm-cta-btn {
  display: inline-block;
  background: #FC2600;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-parkinsans);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s ease, transform .15s ease;
  opacity: 1;
  transform: none;
}

.dm-cta-btn:hover { background: #d1361f; }
.dm-cta-btn:active { transform: scale(0.97); }

.cards-viewport {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  /* height set via JS to exactly one row's content height */
}

.trigger-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  height: 0;
  border-top: 1px dashed rgba(255, 255, 255, .0);
  pointer-events: none;
}

.cards-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  will-change: transform;
}

.dm-card {
  position: absolute;
  width: 376px;
  height: 528px;
  border-radius: 19px;
  overflow: hidden;
  background: #111;
  transform: translateZ(0);
}

.dm-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mobile-flow { display: none }

#serviceSource { display: none; }

@media (max-width: 899px) {
  .dm-section { height: auto !important }

  .dm-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    display: block;
    padding: 44px 0 72px;
  }

  .dm-shell {
    width: calc(100vw - 32px);
    height: auto;
    margin: 0 auto;
  }

  .dm-stage { position: relative; top: auto; left: auto }

  .cards-viewport, .copy-anchor { display: none }

  .mobile-flow { display: block }
  .mobile-service { margin-bottom: 66px }
  .mobile-copy { margin-bottom: 24px }

  .mobile-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px }
  .mobile-card { border-radius: 16px; overflow: hidden; aspect-ratio: 376/528 }
  .mobile-card img { width: 100%; height: 100%; object-fit: cover; display: block }
}

@media (max-width: 560px) {
  .mobile-cards { grid-template-columns: 1fr }
}

/* ============ MOBILE ENTRANCE ANIMATION (dm-section) ============ */
@media (max-width: 899px) {
  .mobile-copy .copy-title,
  .mobile-copy .copy-rule,
  .mobile-copy .copy-bullets,
  .mobile-copy .dm-cta-btn {
    opacity: 0;
    transform: translateY(16px);
  }

  .mobile-cards .mobile-card {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }

  .mobile-service.in-view .copy-title,
  .mobile-service.in-view .copy-rule,
  .mobile-service.in-view .copy-bullets,
  .mobile-service.in-view .dm-cta-btn {
    animation: mobileRiseIn 0.55s cubic-bezier(.22, .9, .32, 1) forwards;
  }

  .mobile-service.in-view .mobile-card {
    animation: mobileCardIn 0.6s cubic-bezier(.22, .9, .32, 1) forwards;
  }

  @keyframes mobileRiseIn { to { opacity: 1; transform: translateY(0); } }
  @keyframes mobileCardIn { to { opacity: 1; transform: translateY(0) scale(1); } }

  @media (prefers-reduced-motion: reduce) {
    .mobile-copy .copy-title,
    .mobile-copy .copy-rule,
    .mobile-copy .copy-bullets,
    .mobile-copy .dm-cta-btn,
    .mobile-cards .mobile-card {
      opacity: 1 !important;
      transform: none !important;
      animation: none !important;
    }
  }
}

/* keep the heading readable on small phones */
@media (max-width: 420px) {
  .copy-title { font-size: 28px; }
}